Completed
Push — master ( 34af96...bc1876 )
by Alejandro
02:24
created
src/Modules/Localize/Localize.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -76,6 +76,9 @@  discard block
 block discarded – undo
76 76
         $this->reloadConfig();
77 77
     }
78 78
 
79
+    /**
80
+     * @param string $locale
81
+     */
79 82
     public function setLocale($locale) {
80 83
         $this->locale = $locale;
81 84
         $folder = \Tight\Utils::addTrailingSlash($this->config->resourceFolder);
@@ -131,6 +134,9 @@  discard block
 block discarded – undo
131 134
         return $output;
132 135
     }
133 136
 
137
+    /**
138
+     * @param string $key
139
+     */
134 140
     public function get($key) {
135 141
         if (isset($this->values[$key])) {
136 142
             return $this->values[$key];
Please login to merge, or discard this patch.
src/Tight.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
 
65 65
     /**
66 66
      * Creates an instance of Tight Framework.
67
-     * @param array $config Settings to override the config file
67
+     * @param TightConfig $config Settings to override the config file
68 68
      */
69 69
     public function __construct($config = []) {
70 70
         // Sets the instance
Please login to merge, or discard this patch.