我正在尝试让作曲家自动加载也加载Propel运行时类,例如Criteria,但是我收到错误
Fatal error: Uncaught Error: Class 'Criteria' not found
直到我使用
use Propel\Runtime\ActiveQuery\Criteria;
我的代码是:
require_once 'vendor/autoload.php';
require_once 'config/config.php';
$authors = AuthorQuery::create()
->filterByAuthorType(1,Criteria::NOT_EQUAL)
->distinct()
->find()
->toArray();