Gregor Völkl
Gregor Völkl
Currently there is the feature to complete route names like `Route::get('/login', 'Administration\Auth\LoginController@showLoginForm') ->name('loginForm');` For the name autocompetion is supported in functions like route('loginForm'); It would be nice to support this...
While this example is working as intended: ``` Route::group(['as' => 'admin::'], function() { Route::get('home', function() {})->name('home'); }); ``` Using the new fluid Syntax does not result in correct autocompletion: ```...
`Worker exited due to exception java.lang.NullPointerException at de.espend.idea.laravel.controller.ControllerReferences$1.getUsesArrayMethodParameter(ControllerReferences.java:130) at de.espend.idea.laravel.controller.ControllerReferences$1.getProvider(ControllerReferences.java:117) at fr.adrienbrault.idea.symfony2plugin.codeInsight.navigation.GotoHandler.getGotoDeclarationTargets(GotoHandler.java:31) at com.intellij.codeInsight.navigation.actions.GotoDeclarationAction.findTargetElementsNoVS(GotoDeclarationAction.java:292) at com.intellij.codeInsight.navigation.CtrlMouseHandler.a(CtrlMouseHandler.java:525) at com.intellij.codeInsight.navigation.CtrlMouseHandler.a(CtrlMouseHandler.java:504) at com.intellij.codeInsight.navigation.CtrlMouseHandler.access$2200(CtrlMouseHandler.java:105) at com.intellij.codeInsight.navigation.CtrlMouseHandler$TooltipProvider.b(CtrlMouseHandler.java:836) at com.intellij.codeInsight.navigation.CtrlMouseHandler$TooltipProvider.access$2900(CtrlMouseHandler.java:776) at com.intellij.codeInsight.navigation.CtrlMouseHandler$TooltipProvider$1.performInReadAction(CtrlMouseHandler.java:821) at com.intellij.openapi.progress.util.ReadTask$1.compute(ReadTask.java:70) at com.intellij.openapi.progress.util.ReadTask$1.compute(ReadTask.java:67)...
The getBoxSize() function of \Intervention\Image\Gd\Font has the following behaviour which seems to be unwanted. Problem: $text = 'Jörg'; $font = new \Intervention\Image\Gd\Font($text); $font->file(public_path('fonts/montserrat-v14-latin-700.ttf')); $font->valign('top'); $box = $font->getBoxSize(); dump($font->getText()); // internal...