Since Liip\ImagineBundle\Utili...mework\SymfonyFramework is declared final, using late-static binding will have no effect. You might want to replace static with self instead.
Late static binding only has effect in subclasses.
A final class cannot be extended anymore so late static binding cannot occurr.
Consider replacing static:: with self::.
To learn more about late static binding, please refer to the PHP core
documentation.
Loading history...
29
}
30
31
public static function isKernelLessThan(int $major, int $minor = null, int $patch = null): bool
Since Liip\ImagineBundle\Utili...mework\SymfonyFramework is declared final, using late-static binding will have no effect. You might want to replace static with self instead.
Late static binding only has effect in subclasses.
A final class cannot be extended anymore so late static binding cannot occurr.
Consider replacing static:: with self::.
To learn more about late static binding, please refer to the PHP core
documentation.
Loading history...
34
}
35
36
private static function kernelVersionCompare(string $operator, int $major, int $minor = null, int $patch = null): bool
Late static binding only has effect in subclasses. A
final
class cannot be extended anymore so late static binding cannot occurr. Consider replacingstatic::
withself::
.To learn more about late static binding, please refer to the PHP core documentation.