9

当前的 Travis-CI PHP7 构建在执行以下代码时会抛出以下错误:

PHP 7 致命错误:static::class 不能用于编译时类名解析

trait EloquentValidatingTrait
{
    // Some declarations skipped
/**
 * Eloquent will call this on model boot
 */
public static function bootEloquentValidatingTrait()
{
    // Calling Model::saving() and asking it to execute assertIsValid() before model is saved into database
    $savingCallable = [static::class, 'saving'];
    $validationCallable = [static::class, 'assertIsValid'];
    forward_static_call($savingCallable, $validationCallable);
}

这是我错过的临时错误还是未来的功能?此RFC下方的注释说它应该可以工作(并且在 5.5 和 5.6 中可以)。

4

1 回答 1

7

通过http://git.php.net/?p=php-src.git;a=commitdiff;h=1d3f77d13d2b457bdf1bc52045da4679741e65cb修复了这个错误

错误很简单......我在编译时常量分辨率优化中将模式设置为强制成功或死亡(函数调用的简单布尔值)。静态表达式需要该模式(例如const FOO = static::class;必须失败)。

将其设置为零,现在它工作正常。只需拉最新的主人进行修复。

于 2015-06-03T22:03:31.053 回答