Completed
Push — dev ( 82e0fe...e1e91c )
by Marc
02:16
created
src/Model/Model.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@
 block discarded – undo
189 189
 
190 190
     /**
191 191
      * @param $model
192
-     * @return bool
192
+     * @return null|boolean
193 193
      */
194 194
     protected function isCurrent($modelName)
195 195
     {
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,10 +1,8 @@
 block discarded – undo
1 1
 <?php namespace Mascame\Artificer\Model;
2 2
 
3
-use Illuminate\Contracts\Database\ModelIdentifier;
4 3
 use View;
5 4
 use Route;
6 5
 use \Illuminate\Support\Str as Str;
7
-use Mascame\Artificer\Options\AdminOption;
8 6
 
9 7
 // Todo: get column type http://stackoverflow.com/questions/18562684/how-to-get-database-field-type-in-laravel
10 8
 class Model
Please login to merge, or discard this patch.
src/Fields/FieldWrapper.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,8 +26,7 @@
 block discarded – undo
26 26
 
27 27
     /**
28 28
      * Field constructor.
29
-     * @param FieldInterface|TypeInterface $field
30
-     * @param null $relation
29
+     * @param FieldInterface $field
31 30
      */
32 31
     public function __construct(FieldInterface $field)
33 32
     {
Please login to merge, or discard this patch.
src/AutoPublishable.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     /**
39 39
      * @param null $fileToCheck
40
-     * @return mixed
40
+     * @return boolean
41 41
      */
42 42
     protected function isPublished($fileToCheck = null) {
43 43
         if (! $fileToCheck) $fileToCheck = config_path($this->name);
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
      * Add files to publishable array & autopublish them in case directory does not exist
54 54
      *
55 55
      * @param array $paths
56
-     * @param null $group
56
+     * @param string $group
57 57
      */
58 58
     protected function publishes(array $paths, $group = null) {
59 59
         parent::publishes($paths, $group);
Please login to merge, or discard this patch.
src/Http/Controllers/BaseController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -1,10 +1,7 @@
 block discarded – undo
1 1
 <?php namespace Mascame\Artificer\Http\Controllers;
2 2
 
3
-use App;
4
-use Auth;
5 3
 use Illuminate\Support\Facades\Input;
6 4
 use Mascame\Artificer\Artificer;
7
-use Mascame\Artificer\Fields\FieldWrapper;
8 5
 use Mascame\Artificer\Model\Model;
9 6
 use View;
10 7
 use Illuminate\Routing\Controller as Controller;
Please login to merge, or discard this patch.