Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 363 Bytes

Directory.md

File metadata and controls

25 lines (16 loc) · 363 Bytes

文件路径: server/app/init/*

所有在此路径下含有run方法的类文件均会在项目启动时由init进程自动加载调用。

Example:

<?php

// file path: app/init/Foo.php

namespace app\init;

class Foo
{
  public int $weight = 10; // 默认权重为10,数字越小越靠前执行

  function run(): void
  {
    ...
  }
}