Compare commits

..
2 Commits
Author SHA1 Message Date
Jan.Weskamp 2b1273c45e Fix for Laravel 5.5 (#540)
Command fire method is now handle
2017-07-16 02:24:12 +02:00
Stidges 08d39c125f Add back leading slash on meta class names (#532) 2017-07-06 21:25:44 +02:00
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ namespace PHPSTORM_META {
override(<?= $method ?>, map([
'' => '@',
<?php foreach($bindings as $abstract => $class): ?>
'<?= $abstract ?>' => <?= $class ?>::class,
'<?= $abstract ?>' => \<?= $class ?>::class,
<?php endforeach; ?>
]));
<?php endforeach; ?>
+1 -1
View File
@@ -74,7 +74,7 @@ class GeneratorCommand extends Command
*
* @return void
*/
public function fire()
public function handle()
{
if (file_exists(base_path() . '/vendor/compiled.php') ||
file_exists(base_path() . '/bootstrap/cache/compiled.php') ||
+1 -1
View File
@@ -70,7 +70,7 @@ class MetaCommand extends Command
*
* @return void
*/
public function fire()
public function handle()
{
$this->registerClassAutoloadExceptions();
+1 -1
View File
@@ -75,7 +75,7 @@ class ModelsCommand extends Command
*
* @return void
*/
public function fire()
public function handle()
{
$filename = $this->option('filename');
$this->write = $this->option('write');