Completed
Push — master ( 1ca3ad...78b3b4 )
by Fumio
02:09
created
sources/Console/AddonMakeCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
     /**
63 63
      * Execute the console command.
64 64
      *
65
-     * @param \Jumilla\Addomnipot\Laravel\Addons\AddonGenerator $generator
65
+     * @param AddonGenerator $generator
66 66
      *
67 67
      * @return mixed
68 68
      */
Please login to merge, or discard this patch.
sources/helpers.php 1 patch
Doc Comments   -10 removed lines patch added patch discarded remove patch
@@ -53,7 +53,6 @@  discard block
 block discarded – undo
53 53
     /**
54 54
      * @param string $name Addon name.
55 55
      * @param string $key
56
-     * @param mixed  $value
57 56
      *
58 57
      * @return mixed
59 58
      */
@@ -69,9 +68,6 @@  discard block
 block discarded – undo
69 68
      *
70 69
      * @param string $name
71 70
      * @param string $id
72
-     * @param array  $parameters
73
-     * @param string $domain
74
-     * @param string $locale
75 71
      *
76 72
      * @return string
77 73
      */
@@ -87,10 +83,6 @@  discard block
 block discarded – undo
87 83
      *
88 84
      * @param string $name
89 85
      * @param string $id
90
-     * @param int $number
91
-     * @param array $parameters
92
-     * @param string $domain
93
-     * @param string $locale
94 86
      *
95 87
      * @return string
96 88
      */
@@ -106,8 +98,6 @@  discard block
 block discarded – undo
106 98
      *
107 99
      * @param string $name
108 100
      * @param string $view
109
-     * @param array $data
110
-     * @param array $mergeData
111 101
      *
112 102
      * @return \Illuminate\View\View
113 103
      */
Please login to merge, or discard this patch.
sources/Repository/NamespacedRepository.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     /**
25 25
      * Create a new configuration repository.
26 26
      *
27
-     * @param \LaravelPlus\Extension\Repository\LoaderInterface $loader
27
+     * @param LoaderInterface $loader
28 28
      */
29 29
     public function __construct(LoaderInterface $loader)
30 30
     {
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      * Get the specified configuration value.
64 64
      *
65 65
      * @param string $key
66
-     * @param mixed  $default
66
+     * @param double  $default
67 67
      *
68 68
      * @return mixed
69 69
      */
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     /**
194 194
      * Set the loader implementation.
195 195
      *
196
-     * @param \LaravelPlus\Extension\Repository\LoaderInterface $loader
196
+     * @param LoaderInterface $loader
197 197
      */
198 198
     public function setLoader(LoaderInterface $loader)
199 199
     {
Please login to merge, or discard this patch.
sources/Addon.php 1 patch
Doc Comments   -9 removed lines patch added patch discarded remove patch
@@ -173,10 +173,6 @@  discard block
 block discarded – undo
173 173
     /**
174 174
      * Translate the given message.
175 175
      *
176
-     * @param string $id
177
-     * @param array $parameters
178
-     * @param string $domain
179
-     * @param string $locale
180 176
      * @return string
181 177
      */
182 178
     public function trans()
@@ -190,11 +186,6 @@  discard block
 block discarded – undo
190 186
     /**
191 187
      * Translates the given message based on a count.
192 188
      *
193
-     * @param string $id
194
-     * @param int $number
195
-     * @param array $parameters
196
-     * @param string $domain
197
-     * @param string $locale
198 189
      * @return string
199 190
      */
200 191
     public function transChoice()
Please login to merge, or discard this patch.
sources/Support/RouteServiceProvider.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
     /**
11 11
      * Bootstrap any application services.
12 12
      *
13
-     * @param  \Illuminate\Routing\Router  $router
14 13
      * @return void
15 14
      */
16 15
     public function boot()
Please login to merge, or discard this patch.
sources/AliasResolver.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
      *
64 64
      * @param string $path
65 65
      *
66
-     * @return static
66
+     * @return Addon
67 67
      */
68 68
     protected function makeAppAddon($path)
69 69
     {
Please login to merge, or discard this 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 Jumilla\Addomnipot\Laravel;
4 4
 
5
-use Illuminate\Config\Repository;
6 5
 use Illuminate\Console\AppNamespaceDetectorTrait;
7 6
 
8 7
 class AliasResolver
Please login to merge, or discard this patch.
sources/ServiceProvider.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Jumilla\Addomnipot\Laravel;
4 4
 
5 5
 use Illuminate\Support\ServiceProvider as BaseServiceProvider;
6
-use Illuminate\Contracts\Http\Kernel as HttpKernel;
7 6
 
8 7
 class ServiceProvider extends BaseServiceProvider
9 8
 {
Please login to merge, or discard this patch.