Completed
Push — master ( dbaa7f...1e95a5 )
by Francesco
11:54
created
src/Domain/Model/Feature.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -13,6 +13,9 @@
 block discarded – undo
13 13
         return $feature;
14 14
     }
15 15
 
16
+    /**
17
+     * @param boolean $isEnabled
18
+     */
16 19
     private function __construct($name, $isEnabled)
17 20
     {
18 21
         $this->name = $name;
Please login to merge, or discard this patch.
src/Featurable/Featurable.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace LaravelFeature\Featurable;
4 4
 
5
-use LaravelFeature\Model\Feature as FeatureModel;
6 5
 use LaravelFeature\Model\Feature;
7 6
 
8 7
 trait Featurable
Please login to merge, or discard this patch.
src/Migration/2016_12_17_163450_create_featurables_table.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Illuminate\Support\Facades\Schema;
4
-use Illuminate\Database\Schema\Blueprint;
5 3
 use Illuminate\Database\Migrations\Migration;
4
+use Illuminate\Database\Schema\Blueprint;
5
+use Illuminate\Support\Facades\Schema;
6 6
 
7 7
 class CreateFeaturablesTable extends Migration
8 8
 {
Please login to merge, or discard this patch.
src/Repository/EloquentFeatureRepository.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 namespace LaravelFeature\Repository;
4 4
 
5 5
 use LaravelFeature\Domain\Exception\FeatureException;
6
-use LaravelFeature\Domain\Repository\FeatureRepositoryInterface;
7 6
 use LaravelFeature\Domain\Model\Feature;
7
+use LaravelFeature\Domain\Repository\FeatureRepositoryInterface;
8 8
 use LaravelFeature\Featurable\FeaturableInterface;
9 9
 use LaravelFeature\Model\Feature as Model;
10 10
 
Please login to merge, or discard this patch.
src/Migration/2016_12_17_105737_create_features_table.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-use Illuminate\Support\Facades\Schema;
4
-use Illuminate\Database\Schema\Blueprint;
5 3
 use Illuminate\Database\Migrations\Migration;
4
+use Illuminate\Database\Schema\Blueprint;
5
+use Illuminate\Support\Facades\Schema;
6 6
 
7 7
 class CreateFeaturablesTable extends Migration
8 8
 {
Please login to merge, or discard this patch.