From 77fbef112da850009ac68e055b7af70d446f36b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Monterisi?= Date: Tue, 4 Mar 2014 02:25:02 +0100 Subject: [PATCH] "An Eloquent Model:" is not necessary, removed it. Not needind it since that information is gathered by IDE* with class definition. ```class Party extends Eloquent {``` *:(almost all ide will, I guess) --- src/Barryvdh/LaravelIdeHelper/ModelsCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Barryvdh/LaravelIdeHelper/ModelsCommand.php b/src/Barryvdh/LaravelIdeHelper/ModelsCommand.php index 8de0a2f..e2ee119 100644 --- a/src/Barryvdh/LaravelIdeHelper/ModelsCommand.php +++ b/src/Barryvdh/LaravelIdeHelper/ModelsCommand.php @@ -359,7 +359,7 @@ class ModelsCommand extends Command { } if(!$phpdoc->getText()){ - $phpdoc->setText("An Eloquent Model: '$class'"); + $phpdoc->setText($class); } $properties = array();