Completed
Push — master ( f7bd00...f5f6c6 )
by Avtandil
03:36
created
src/MultiLang/Console/MigrationCommand.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,6 @@
 block discarded – undo
65 65
     /**
66 66
      * Create the migration.
67 67
      *
68
-     * @param  string $name
69 68
      * @return bool
70 69
      */
71 70
     protected function createMigration($table)
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
                 $this->info('Migration successfully created!');
54 54
             } else {
55 55
                 $this->error(
56
-                    'Couldn\'t create migration.'.PHP_EOL.' Check the write permissions
56
+                    'Couldn\'t create migration.' . PHP_EOL . ' Check the write permissions
57 57
                     within the database/migrations directory.'
58 58
                 );
59 59
             }
Please login to merge, or discard this patch.
src/MultiLang/MultiLangServiceProvider.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@
 block discarded – undo
145 145
     /**
146 146
      * Get the services provided by the provider.
147 147
      *
148
-     * @return array
148
+     * @return string[]
149 149
      */
150 150
     public function provides()
151 151
     {
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
         );
44 44
 
45 45
         // Register blade directives
46
-        Blade::directive('t', function ($expression) {
46
+        Blade::directive('t', function($expression) {
47 47
             return "<?php echo e(t({$expression})); ?>";
48 48
         });
49 49
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
         $configPath = __DIR__ . '/../config/config.php';
60 60
         $this->mergeConfigFrom($configPath, 'debugbar');
61 61
 
62
-        $this->app->singleton('multilang', function ($app) {
62
+        $this->app->singleton('multilang', function($app) {
63 63
             $locale = $app->getLocale();
64 64
             $environment = $app->environment();
65 65
             $config = $app['config']->get('multilang');
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
             $multilang->setLocale($locale);
75 75
 
76 76
             if ($multilang->autoSaveIsAllowed()) {
77
-                $this->app->terminating(function () use ($multilang) {
77
+                $this->app->terminating(function() use ($multilang) {
78 78
                     return $multilang->saveTexts();
79 79
                 });
80 80
             }
@@ -85,13 +85,13 @@  discard block
 block discarded – undo
85 85
         $this->app->alias('multilang', 'Longman\LaravelMultiLang\MultiLang');
86 86
 
87 87
         $this->app['command.multilang.migration'] = $this->app->share(
88
-            function ($app) {
88
+            function($app) {
89 89
                 return new MigrationCommand();
90 90
             }
91 91
         );
92 92
 
93 93
         $this->app['command.multilang.texts'] = $this->app->share(
94
-            function ($app) {
94
+            function($app) {
95 95
                 return new TextsCommand();
96 96
             }
97 97
         );
Please login to merge, or discard this patch.
src/helpers.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,6 @@
 block discarded – undo
35 35
     /**
36 36
      * Get translated text
37 37
      *
38
-     * @param  mixed   $key
39 38
      * @return mixed
40 39
      */
41 40
     function t($text)
Please login to merge, or discard this patch.
src/MultiLang/MultiLang.php 1 patch
Doc Comments   +11 added lines, -3 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      * @param  array                                $config
81 81
      * @param  \Illuminate\Cache\CacheManager       $cache
82 82
      * @param  \Illuminate\Database\DatabaseManager $db
83
-     * @return void
83
+     * @return string
84 84
      */
85 85
     public function __construct($environment, array $config, CacheContract $cache, DatabaseContract $db)
86 86
     {
@@ -113,6 +113,9 @@  discard block
 block discarded – undo
113 113
         }
114 114
     }
115 115
 
116
+    /**
117
+     * @param string $key
118
+     */
116 119
     public function getConfig($key = null)
117 120
     {
118 121
         if ($key === null) {
@@ -126,7 +129,7 @@  discard block
 block discarded – undo
126 129
      * Set locale and load texts
127 130
      *
128 131
      * @param  string $lang
129
-     * @param  array  $text
132
+     * @param  array  $texts
130 133
      * @return void
131 134
      */
132 135
     public function setLocale($lang, $texts = null)
@@ -178,7 +181,6 @@  discard block
 block discarded – undo
178 181
      * Get translated text
179 182
      *
180 183
      * @param  string   $key
181
-     * @param  string   $default
182 184
      * @return string
183 185
      */
184 186
     public function get($key)
@@ -259,6 +261,9 @@  discard block
 block discarded – undo
259 261
         return $status;
260 262
     }
261 263
 
264
+    /**
265
+     * @param string|null $lang
266
+     */
262 267
     public function loadTextsFromDatabase($lang)
263 268
     {
264 269
         $texts = $lang ? $this->db->table($this->getTableName())
@@ -279,6 +284,9 @@  discard block
 block discarded – undo
279 284
         return $texts;
280 285
     }
281 286
 
287
+    /**
288
+     * @param string $lang
289
+     */
282 290
     public function setCacheName($lang)
283 291
     {
284 292
         $this->cache_name = $this->getConfig('texts_table') . '_' . $lang;
Please login to merge, or discard this patch.