@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | - return [ |
|
| 2 | + return [ |
|
| 3 | 3 | '{attribute} must have a minimum length of {length} characters.' => '{attribute} musi mieć co najmniej {length} znaków.', |
| 4 | 4 | '{attribute} must include at least one special character.' => '{attribute} musi zawierać przynajmniej jeden znak specjalny.', |
| 5 | 5 | '{attribute} must include at least one digit.' => '{attribute} musi zawierać co najmniej jedną cyfrę.', |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | $messageFiles = glob("$repoPath/src/**/messages/$language/$filename.php") ?: glob("$repoPath/src/messages/$language/$filename.php"); |
| 42 | 42 | |
| 43 | 43 | $this->outputInfo('Following files will be affected:'); |
| 44 | - $this->output(implode("\n", $messageFiles) . "\n"); |
|
| 44 | + $this->output(implode("\n", $messageFiles)."\n"); |
|
| 45 | 45 | |
| 46 | 46 | $key = $this->prompt('Insert translation key:'); |
| 47 | 47 | $text = $this->prompt('Insert translation text:'); |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | |
| 60 | 60 | if (!$this->dry) { |
| 61 | 61 | if (exec("[ -d $repoPath/.git ] && command -v git")) { |
| 62 | - $diffCommand = "git --git-dir=$repoPath/.git --work-tree=$repoPath diff -- " . str_replace($repoPath . '/', '', implode(" ", $messageFiles)); |
|
| 62 | + $diffCommand = "git --git-dir=$repoPath/.git --work-tree=$repoPath diff -- ".str_replace($repoPath.'/', '', implode(" ", $messageFiles)); |
|
| 63 | 63 | exec($diffCommand, $diff); |
| 64 | 64 | $this->output(implode("\n", $diff)); |
| 65 | 65 | } |
@@ -33,14 +33,14 @@ |
||
| 33 | 33 | { |
| 34 | 34 | if ($this->module instanceof Module) { |
| 35 | 35 | if ($this->module->useAppViewPath) { |
| 36 | - return '@app/views/' . $this->module->id . '/' . $this->id; |
|
| 36 | + return '@app/views/'.$this->module->id.'/'.$this->id; |
|
| 37 | 37 | } elseif (is_array($this->module->viewMap)) { |
| 38 | - $currentAction = $this->id . '/' . ($this->action ? $this->action->id : $this->defaultAction); |
|
| 38 | + $currentAction = $this->id.'/'.($this->action ? $this->action->id : $this->defaultAction); |
|
| 39 | 39 | foreach ($this->module->viewMap as $action => $viewPath) { |
| 40 | 40 | |
| 41 | 41 | // Special case for map all views of controller |
| 42 | 42 | if ($action === '*') { |
| 43 | - return $viewPath . '/' . $this->id; |
|
| 43 | + return $viewPath.'/'.$this->id; |
|
| 44 | 44 | } elseif (fnmatch($action, $currentAction)) { |
| 45 | 45 | return $viewPath; |
| 46 | 46 | } |