Completed
Push — master ( 7f586b...838830 )
by Mahmoud
02:32
created
app/Port/Email/Abstracts/MailsAbstract.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,6 @@
 block discarded – undo
37 37
     /**
38 38
      * MailsAbstract constructor.
39 39
      *
40
-     * @param \Illuminate\Mail\Mailer $mail
41 40
      */
42 41
     public function __construct()
43 42
     {
Please login to merge, or discard this patch.
app/Port/Provider/Traits/PortServiceProviderTrait.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,6 +48,7 @@  discard block
 block discarded – undo
48 48
      * By default Laravel takes (server/database/factories) as the
49 49
      * path to the factories, this function changes the path to load
50 50
      * the factories from the infrastructure directory.
51
+     * @param string $customPath
51 52
      */
52 53
     public function changeTheDefaultDatabaseModelsFactoriesPath($customPath)
53 54
     {
@@ -138,7 +139,7 @@  discard block
 block discarded – undo
138 139
     }
139 140
 
140 141
     /**
141
-     * @param $directory
142
+     * @param string $directory
142 143
      */
143 144
     private function loadConfigs($directory)
144 145
     {
Please login to merge, or discard this patch.
app/Port/Routes/Traits/RoutesServiceProviderTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
     /**
114 114
      * @param \Symfony\Component\Finder\SplFileInfo $file
115 115
      *
116
-     * @return  mixed
116
+     * @return  string
117 117
      */
118 118
     private function getRouteFileNameWithoutExtension(SplFileInfo $file)
119 119
     {
Please login to merge, or discard this patch.
app/Port/Tests/PHPUnit/Traits/TestingTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,13 +32,13 @@
 block discarded – undo
32 32
     public $loggedInTestingUser;
33 33
 
34 34
     /**
35
-     * @param        $endpoint
35
+     * @param        string $endpoint
36 36
      * @param string $verb
37 37
      * @param array  $data
38 38
      * @param bool   $protected
39 39
      * @param array  $headers
40 40
      *
41
-     * @return  mixed
41
+     * @return  Response
42 42
      * @throws \Symfony\Component\Debug\Exception\UndefinedMethodException
43 43
      */
44 44
     public function apiCall($endpoint, $verb = 'get', array $data = [], $protected = true, array $headers = [])
Please login to merge, or discard this patch.