Completed
Push — master ( e50528...6da835 )
by Mahmoud
08:07
created
app/Ship/Features/Validations/ValidationTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      */
18 18
     public function extendValidationRules()
19 19
     {
20
-        Validator::extend('no_spaces', function ($attr, $value) {
20
+        Validator::extend('no_spaces', function($attr, $value) {
21 21
             return preg_match('/^\S*$/u', $value);
22 22
         }, ['String should not contain space.']);
23 23
     }
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.
app/Ship/Engine/Traits/HashIdTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     public function runEndpointsHashedIdsDecoder()
30 30
     {
31 31
         if (Config::get('hello.hash-id')) {
32
-            Route::bind('id', function ($id, $route) {
32
+            Route::bind('id', function($id, $route) {
33 33
                 // skip decoding some endpoints
34 34
                 if (!in_array($route->uri(), $this->skippedEndpoints)) {
35 35
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     {
59 59
         // hash the ID only if hash-id enabled in the config
60 60
         if (Config::get('hello.hash-id')) {
61
-            return $this->encoder(($key) ? : $this->getKey());
61
+            return $this->encoder(($key) ?: $this->getKey());
62 62
         }
63 63
 
64 64
         return $this->getKey();
Please login to merge, or discard this patch.
app/Containers/Authorization/Actions/SyncPermissionsOnRoleAction.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,10 +59,10 @@
 block discarded – undo
59 59
         $permissions = [];
60 60
 
61 61
         if (is_array($permissionsIds)) {
62
-            foreach ($permissionsIds as $permissionId){
62
+            foreach ($permissionsIds as $permissionId) {
63 63
                 $permissions[] = $this->getPermissionTask->run($permissionId);
64 64
             }
65
-        }else{
65
+        } else {
66 66
             $permissions[] = $this->getPermissionTask->run($permissionsIds);
67 67
         }
68 68
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
             foreach ($permissionsIds as $permissionId){
63 63
                 $permissions[] = $this->getPermissionTask->run($permissionId);
64 64
             }
65
-        }else{
65
+        } else{
66 66
             $permissions[] = $this->getPermissionTask->run($permissionsIds);
67 67
         }
68 68
 
Please login to merge, or discard this patch.
app/Containers/Authorization/UI/API/Controllers/Controller.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
30 30
 use App\Containers\Authorization\UI\API\Requests\SyncUserRolesRequest;
31 31
 use App\Containers\Authorization\UI\API\Transformers\PermissionTransformer;
32 32
 use App\Containers\Authorization\UI\API\Transformers\RoleTransformer;
33
-use App\Containers\User\Models\User;
34 33
 use App\Containers\User\UI\API\Transformers\UserTransformer;
35 34
 use App\Ship\Parents\Controllers\ApiController;
36 35
 
Please login to merge, or discard this patch.
app/Containers/Debugger/Tasks/RequestsDebuggerTask.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
     }
44 44
 
45 45
     /**
46
-     * @param $request
46
+     * @param \Illuminate\Http\Request $request
47 47
      * @param $response
48 48
      */
49 49
     public function run($request, $response)
@@ -76,11 +76,11 @@  discard block
 block discarded – undo
76 76
      * Feel free to pass any extra data to be displayed.
77 77
      *
78 78
      * @param $request
79
-     * @param $user
79
+     * @param string $user
80 80
      * @param $browser
81 81
      * @param $authHeader
82 82
      * @param $responseContent
83
-     * @param $requestData
83
+     * @param string $requestData
84 84
      */
85 85
     private function log($request, $user, $browser, $authHeader, $responseContent, $requestData)
86 86
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace App\Containers\Debugger\Tasks;
4 4
 
5 5
 use App;
6
-use DB;
7 6
 use Illuminate\Support\Facades\Config;
8 7
 use Jenssegers\Agent\Facades\Agent;
9 8
 use Log;
Please login to merge, or discard this patch.