Completed
Push — master ( 4c5f95...615c30 )
by Mahmoud
04:04
created
app/Port/Butler/Portals/PortButler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
     {
35 35
         $containersNames = [];
36 36
 
37
-        foreach($this->getContainersPaths() as $containersPath){
37
+        foreach ($this->getContainersPaths() as $containersPath) {
38 38
             $containersNames[] = basename($containersPath);
39 39
         }
40 40
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     public function buildMainServiceProvider($containersNamespace, $containerName)
63 63
     {
64
-        if($containerName != 'Port') {
64
+        if ($containerName != 'Port') {
65 65
             return $containersNamespace . "\\Containers\\" . $containerName . "\\Providers\\" . $containerName . "ServiceProvider";
66 66
         }
67 67
 
Please login to merge, or discard this patch.
app/Port/Butler/Providers/PortButlerServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      */
19 19
     public function register()
20 20
     {
21
-        $this->app->bind('PortButler', function () {
21
+        $this->app->bind('PortButler', function() {
22 22
             return $this->app->make(PortButler::class);
23 23
         });
24 24
     }
Please login to merge, or discard this patch.
app/Containers/Paypal/Actions/CreatePaypalAccountAction.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 use App\Containers\Stripe\Repositories\Eloquent\StripeAccountRepository;
7 7
 use App\Containers\User\Models\User;
8 8
 use App\Port\Action\Abstracts\Action;
9
-use Auth;
10 9
 
11 10
 /**
12 11
  * Class CreateStripeAccountAction.
Please login to merge, or discard this patch.
app/Containers/Email/UI/WEB/Controllers/Controller.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
      * @param \App\Containers\User\Actions\FindUserByIdAction              $findUserByIdAction
22 22
      * @param \App\Containers\Email\Actions\ValidateConfirmationCodeAction $validateConfirmationCodeAction
23 23
      *
24
-     * @return  \Illuminate\Http\RedirectResponse|\Illuminate\Routing\Redirector
24
+     * @return  \Illuminate\Http\RedirectResponse
25 25
      */
26 26
     public function confirmUserEmail(
27 27
         ConfirmUserEmailRequest $confirmUserEmailRequest,
Please login to merge, or discard this patch.