Completed
Push — master ( 1b7f7e...bed694 )
by Mahmoud
03:37
created
app/Ship/Engine/Loaders/SeederLoaderTrait.php 2 patches
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -70,8 +70,8 @@  discard block
 block discarded – undo
70 70
     }
71 71
 
72 72
     /**
73
-     * @param array $directories
74
-     * @param       $seedersClasses
73
+     * @param string[] $directories
74
+     * @param       Collection $seedersClasses
75 75
      *
76 76
      * @return  mixed
77 77
      */
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     /**
104 104
      * @param $seedersClasses
105 105
      *
106
-     * @return  \Illuminate\Support\Collection|static
106
+     * @return  Collection|null
107 107
      */
108 108
     private function sortSeeders($seedersClasses)
109 109
     {
@@ -140,7 +140,7 @@  discard block
 block discarded – undo
140 140
     }
141 141
 
142 142
     /**
143
-     * @param $seedersClasses
143
+     * @param Collection|null $seedersClasses
144 144
      */
145 145
     private function loadSeeders($seedersClasses)
146 146
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -122,7 +122,7 @@
 block discarded – undo
122 122
             }
123 123
 
124 124
             // sort the classes that needed to be ordered
125
-            $orderedSeederClasses = $orderedSeederClasses->sortBy(function ($seederFullClassName) {
125
+            $orderedSeederClasses = $orderedSeederClasses->sortBy(function($seederFullClassName) {
126 126
                 // get the order number form the end of each class name
127 127
                 $orderNumber = substr($seederFullClassName, strpos($seederFullClassName, "_") + 1);
128 128
 
Please login to merge, or discard this patch.
app/Ship/Engine/Loaders/FactoriesLoaderTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     {
23 23
         $newFactoriesPath = '/app/Ship/Engine/Loaders/FactoryMixer';
24 24
 
25
-        App::singleton(Factory::class, function ($app) use ($newFactoriesPath) {
25
+        App::singleton(Factory::class, function($app) use ($newFactoriesPath) {
26 26
             $faker = $app->make(Generator::class);
27 27
 
28 28
             return Factory::construct($faker, base_path() . $newFactoriesPath);
Please login to merge, or discard this patch.
app/Ship/Engine/Traits/FractalTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
 
35 35
         // if DataArray `\League\Fractal\Serializer\DataArraySerializer` do noting since it's set by default by the Dingo API
36 36
         if ($serializerName !== 'DataArray') {
37
-            app('Dingo\Api\Transformer\Factory')->setAdapter(function () use ($serializerName) {
37
+            app('Dingo\Api\Transformer\Factory')->setAdapter(function() use ($serializerName) {
38 38
                 switch ($serializerName) {
39 39
                     case 'JsonApi':
40 40
                         $serializer = new \League\Fractal\Serializer\JsonApiSerializer(Config::get('api.domain'));
Please login to merge, or discard this patch.
app/Ship/Features/Criterias/Eloquent/CountCriteria.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,6 +37,6 @@
 block discarded – undo
37 37
      */
38 38
     public function apply($model, PrettusRepositoryInterface $repository)
39 39
     {
40
-        return DB::table($model->getModel()->getTable())->select('*', DB::raw('count('.$this->field.') as total_count'))->groupBy($this->field);
40
+        return DB::table($model->getModel()->getTable())->select('*', DB::raw('count(' . $this->field . ') as total_count'))->groupBy($this->field);
41 41
     }
42 42
 }
Please login to merge, or discard this patch.
app/Ship/Features/Criterias/Eloquent/ThisUserCriteria.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
      */
37 37
     public function apply($model, PrettusRepositoryInterface $repository)
38 38
     {
39
-        if(!$this->userId){
39
+        if (!$this->userId) {
40 40
             $this->userId = Auth::user()->id;
41 41
         }
42 42
 
Please login to merge, or discard this patch.
Features/Migrations/Queue/2017_11_30_174443_create_failed_jobs_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('failed_jobs', function (Blueprint $table) {
16
+        Schema::create('failed_jobs', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
             $table->text('connection');
19 19
             $table->text('queue');
Please login to merge, or discard this patch.
app/Ship/Features/Email/Abstracts/MailsAbstract.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     public function send($data = [])
63 63
     {
64
-        if(!$this->fromEmail || !$this->toEmail){
64
+        if (!$this->fromEmail || !$this->toEmail) {
65 65
             throw new EmailIsMissedException();
66 66
         }
67 67
 
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         // check if sending emails is enabled and if this is not running a testing environment
71 71
         if (Config::get('mail.enabled')) {
72 72
 
73
-            Mail::queue('EmailTemplates.' . $this->template, $data, function ($m) {
73
+            Mail::queue('EmailTemplates.' . $this->template, $data, function($m) {
74 74
                 $m->from($this->fromEmail, $this->fromName);
75 75
                 $m->to($this->toEmail, $this->toName)
76 76
                     ->subject($this->subject);
Please login to merge, or discard this patch.
app/Ship/Features/Configs/repository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@
 block discarded – undo
220 220
     */
221 221
     'generator'  => [
222 222
         'basePath'      => env('SRC_PATH'),
223
-        'rootNamespace' => env('ROOT_NAMESPACE').'\\',
223
+        'rootNamespace' => env('ROOT_NAMESPACE') . '\\',
224 224
         'paths'         => [
225 225
             'models'       => 'Entities',
226 226
             'repositories' => 'Repositories',
Please login to merge, or discard this patch.
app/Ship/Engine/Butlers/ShipButler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
      */
65 65
     public function getContainersPaths()
66 66
     {
67
-        return File::directories(app_path('Containers'));;
67
+        return File::directories(app_path('Containers')); ;
68 68
     }
69 69
 
70 70
     /**
Please login to merge, or discard this patch.