You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In PotionServiceProvider, I have confirmed the use of the (apparently) depricated createMatcher.
Needs to be:
/*
* If the directive method exists, we're using Laravel 5
*/
if (method_exists($compiler, 'directive')) {
// do something
}
else {
$pattern = $compiler->createMatcher('potion_asset_url');
}
Guys - I've written the following code to handle the L5.1+ codebase. SparkEleven@c000e6b
I really need confirmation that I've correctly understood why you were using BladeCompiler::createMatcher in the first place as the pattern seems simple.
Call to undefined method Illuminate\View\Compilers\BladeCompiler::createMatcher()
This occurs immediately after installation.
The text was updated successfully, but these errors were encountered: