Completed
Push — master ( 3cfde3...f5e4bf )
by Oliver
03:15
created
src/Services/BackpackBaseConfigService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -24,6 +24,9 @@
 block discarded – undo
24 24
         "route_prefix",
25 25
     ];
26 26
 
27
+    /**
28
+     * @param string $file
29
+     */
27 30
     public function __construct(BrandingCommand $command, $file)
28 31
     {
29 32
         $this->command = $command;
Please login to merge, or discard this patch.
src/Services/EnvService.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -19,6 +19,9 @@
 block discarded – undo
19 19
         "BACKPACK_REGISTRATION_OPEN",
20 20
     ];
21 21
 
22
+    /**
23
+     * @param string $env
24
+     */
22 25
     public function __construct(BrandingCommand $command, $env)
23 26
     {
24 27
         $this->command = $command;
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 Zoutapps\Laravel\Backpack\Branding\Services;
4 4
 
5
-use Illuminate\Support\Collection;
6 5
 use Zoutapps\Laravel\Backpack\Branding\Commands\BrandingCommand;
7 6
 use Zoutapps\Laravel\Backpack\Branding\Traits\ValueReplacerTrait;
8 7
 
Please login to merge, or discard this patch.
src/Commands/BrandingCommand.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,9 +5,9 @@
 block discarded – undo
5 5
 use Illuminate\Console\Command;
6 6
 use Illuminate\Console\ConfirmableTrait;
7 7
 use Zoutapps\Laravel\Backpack\Branding\Services\BackpackBaseConfigService;
8
+use Zoutapps\Laravel\Backpack\Branding\Services\BrandingService;
8 9
 use Zoutapps\Laravel\Backpack\Branding\Services\CopyService;
9 10
 use Zoutapps\Laravel\Backpack\Branding\Services\EnvService;
10
-use Zoutapps\Laravel\Backpack\Branding\Services\BrandingService;
11 11
 
12 12
 class BrandingCommand extends Command
13 13
 {
Please login to merge, or discard this patch.
src/Services/BrandingService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -41,6 +41,9 @@
 block discarded – undo
41 41
         $this->command->info("Config file for Branding facade created at <comment>{$path}</comment>");
42 42
     }
43 43
 
44
+    /**
45
+     * @return string
46
+     */
44 47
     function fileContent($values)
45 48
     {
46 49
         $data = ShortSyntaxArray::parse($values);
Please login to merge, or discard this patch.
src/Branding.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -26,6 +26,9 @@
 block discarded – undo
26 26
         return $this->get('url');
27 27
     }
28 28
 
29
+    /**
30
+     * @param string $key
31
+     */
29 32
     private function get($key)
30 33
     {
31 34
         $configKey = 'zoutapps.branding.' . $key;
Please login to merge, or discard this patch.