Completed
Push — master ( 5d6150...13170c )
by Marc
14:07 queued 08:45
created
core/traits/CacheableTrait.php 1 patch
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -79,34 +79,34 @@
 block discarded – undo
79 79
         return $this->_cachable;
80 80
     }
81 81
     
82
-     /**
83
-     * Method combines both [[setHasCache()]] and [[getHasCache()]] methods to retrieve value identified by a $key,
84
-     * or to store the result of $closure execution if there is no cache available for the $key.
85
-     *
86
-     * Usage example:
87
-     *
88
-     * ```php
89
-     * use CacheableTrait;
90
-     *
91
-     * public function getTopProducts($count = 10)
92
-     * {
93
-     *     return $this->getOrSetHasCache(['top-n-products', 'n' => $count], function ($cache) use ($count) {
94
-     *         return Products::find()->mostPopular()->limit(10)->all();
95
-     *     }, 1000);
96
-     * }
97
-     * ```
98
-     *
99
-     * @param mixed $key a key identifying the value to be cached. This can be a simple string or
100
-     * a complex data structure consisting of factors representing the key.
101
-     * @param \Closure $closure the closure that will be used to generate a value to be cached.
102
-     * In case $closure returns `false`, the value will not be cached.
103
-     * @param int $duration default duration in seconds before the cache will expire. If not set,
104
-     * [[defaultDuration]] value will be used.
105
-     * @param Dependency $dependency dependency of the cached item. If the dependency changes,
106
-     * the corresponding value in the cache will be invalidated when it is fetched via [[get()]].
107
-     * This parameter is ignored if [[serializer]] is `false`.
108
-     * @return mixed result of $closure execution
109
-     */
82
+        /**
83
+         * Method combines both [[setHasCache()]] and [[getHasCache()]] methods to retrieve value identified by a $key,
84
+         * or to store the result of $closure execution if there is no cache available for the $key.
85
+         *
86
+         * Usage example:
87
+         *
88
+         * ```php
89
+         * use CacheableTrait;
90
+         *
91
+         * public function getTopProducts($count = 10)
92
+         * {
93
+         *     return $this->getOrSetHasCache(['top-n-products', 'n' => $count], function ($cache) use ($count) {
94
+         *         return Products::find()->mostPopular()->limit(10)->all();
95
+         *     }, 1000);
96
+         * }
97
+         * ```
98
+         *
99
+         * @param mixed $key a key identifying the value to be cached. This can be a simple string or
100
+         * a complex data structure consisting of factors representing the key.
101
+         * @param \Closure $closure the closure that will be used to generate a value to be cached.
102
+         * In case $closure returns `false`, the value will not be cached.
103
+         * @param int $duration default duration in seconds before the cache will expire. If not set,
104
+         * [[defaultDuration]] value will be used.
105
+         * @param Dependency $dependency dependency of the cached item. If the dependency changes,
106
+         * the corresponding value in the cache will be invalidated when it is fetched via [[get()]].
107
+         * This parameter is ignored if [[serializer]] is `false`.
108
+         * @return mixed result of $closure execution
109
+         */
110 110
     public function getOrSetHasCache($key, \Closure $closure, $duration = null, $dependency = null)
111 111
     {
112 112
         if (($value = $this->getHasCache($key)) !== false) {
Please login to merge, or discard this patch.
core/traits/ApplicationTrait.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -202,14 +202,14 @@
 block discarded – undo
202 202
      */
203 203
     public function getAdminModules()
204 204
     {
205
-    	$modules = [];
205
+        $modules = [];
206 206
     	
207
-    	foreach ($this->getModules() as $id => $obj) {
208
-    		if ($obj instanceof Module && $obj instanceof AdminModuleInterface) {
209
-    			$modules[$id] = $obj;
210
-    		}
211
-    	}
207
+        foreach ($this->getModules() as $id => $obj) {
208
+            if ($obj instanceof Module && $obj instanceof AdminModuleInterface) {
209
+                $modules[$id] = $obj;
210
+            }
211
+        }
212 212
     	
213
-    	return $modules;
213
+        return $modules;
214 214
     }
215 215
 }
Please login to merge, or discard this patch.
core/web/Element.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -261,7 +261,7 @@
 block discarded – undo
261 261
      */
262 262
     public function render($file, array $args = [])
263 263
     {
264
-    	$view = new View();
264
+        $view = new View();
265 265
         return $view->renderPhpFile(rtrim($this->getFolder(), DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR . FileHelper::ensureExtension($file, 'php'), $args);
266 266
         
267 267
     }
Please login to merge, or discard this patch.
core/web/View.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
      */
84 84
     public function url($route, array $params = [], $scheme = false)
85 85
     {
86
-    	trigger_error('Deprecated since 1.0.0-RC3 use \luya\helpers\Url::toRoute instead. Will be removed in 1.0.0', E_USER_DEPRECATED);
86
+        trigger_error('Deprecated since 1.0.0-RC3 use \luya\helpers\Url::toRoute instead. Will be removed in 1.0.0', E_USER_DEPRECATED);
87 87
         $routeParams = [$route];
88 88
         foreach ($params as $key => $value) {
89 89
             $routeParams[$key] = $value;
Please login to merge, or discard this patch.
core/traits/RegistryTrait.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -12,25 +12,25 @@
 block discarded – undo
12 12
  */
13 13
 trait RegistryTrait
14 14
 {
15
-	/**
16
-	 * Determines what attribute field in the corresponding model table should be used to find the identifier key.
17
-	 * 
18
-	 * @return string The name attribute field defaults to `name`.
19
-	 */
20
-	public static function getNameAttribute()
21
-	{
22
-		return 'name';
23
-	}
15
+    /**
16
+     * Determines what attribute field in the corresponding model table should be used to find the identifier key.
17
+     * 
18
+     * @return string The name attribute field defaults to `name`.
19
+     */
20
+    public static function getNameAttribute()
21
+    {
22
+        return 'name';
23
+    }
24 24
 	
25
-	/**
26
-	 * Determines what attribute field in the corresponding model table should be used to store the identifier key and retrieve its data.
27
-	 * 
28
-	 * @return string The value attribute field defaults to `value`.
29
-	 */
30
-	public static function getValueAttribute()
31
-	{
32
-		return 'value';
33
-	}
25
+    /**
26
+     * Determines what attribute field in the corresponding model table should be used to store the identifier key and retrieve its data.
27
+     * 
28
+     * @return string The value attribute field defaults to `value`.
29
+     */
30
+    public static function getValueAttribute()
31
+    {
32
+        return 'value';
33
+    }
34 34
 	
35 35
     /**
36 36
      * Check whether a config value exists or not
Please login to merge, or discard this patch.
core/web/Bootstrap.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
                     if ($module instanceof AdminModuleInterface) {
69 69
                         $this->_adminAssets = ArrayHelper::merge($module->getAdminAssets(), $this->_adminAssets);
70 70
                         if ($module->getMenu()) {
71
-                        	$this->_adminMenus[$module->id] = $module->getMenu();
71
+                            $this->_adminMenus[$module->id] = $module->getMenu();
72 72
                         }
73 73
                         $this->_jsTranslations[$id] = $module->getJsTranslationMessages();
74 74
                     }
Please login to merge, or discard this patch.
core/web/filters/RobotsFilter.php 1 patch
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -43,41 +43,41 @@
 block discarded – undo
43 43
  */
44 44
 class RobotsFilter extends ActionFilter
45 45
 {
46
-	public $delay = 2.5;
46
+    public $delay = 2.5;
47 47
 	
48
-	const ROBOTS_FILTER_SESSION_IDENTIFIER = '__robotsFilterRenderTime';
48
+    const ROBOTS_FILTER_SESSION_IDENTIFIER = '__robotsFilterRenderTime';
49 49
 	
50
-	private function getRenderTime()
51
-	{
52
-		return Yii::$app->session->get(self::ROBOTS_FILTER_SESSION_IDENTIFIER, time());
53
-	}
50
+    private function getRenderTime()
51
+    {
52
+        return Yii::$app->session->get(self::ROBOTS_FILTER_SESSION_IDENTIFIER, time());
53
+    }
54 54
 	
55
-	private function setRenderTime($time)
56
-	{
57
-		Yii::$app->session->set(self::ROBOTS_FILTER_SESSION_IDENTIFIER, $time);
58
-	}
55
+    private function setRenderTime($time)
56
+    {
57
+        Yii::$app->session->set(self::ROBOTS_FILTER_SESSION_IDENTIFIER, $time);
58
+    }
59 59
 	
60 60
 	
61
-	private function getElapsedProcessTime()
62
-	{
63
-		return (int) (time() - $this->getRenderTime());
64
-	}
61
+    private function getElapsedProcessTime()
62
+    {
63
+        return (int) (time() - $this->getRenderTime());
64
+    }
65 65
 	
66
-	public function beforeAction($action)
67
-	{
68
-		if (Yii::$app->request->isPost) {
69
-			if ($this->getElapsedProcessTime() < $this->delay) {
70
-				throw new InvalidCallException("Robots Filter has detected an invalid Request: " . VarDumper::export(Yii::$app->request->post()));
71
-			}
72
-		}
66
+    public function beforeAction($action)
67
+    {
68
+        if (Yii::$app->request->isPost) {
69
+            if ($this->getElapsedProcessTime() < $this->delay) {
70
+                throw new InvalidCallException("Robots Filter has detected an invalid Request: " . VarDumper::export(Yii::$app->request->post()));
71
+            }
72
+        }
73 73
 		
74
-		return true;
75
-	}
74
+        return true;
75
+    }
76 76
 	
77
-	public function afterAction($action, $result)
78
-	{
79
-		$this->setRenderTime(time());
77
+    public function afterAction($action, $result)
78
+    {
79
+        $this->setRenderTime(time());
80 80
 		
81
-		return $result;
82
-	}
81
+        return $result;
82
+    }
83 83
 }
84 84
\ No newline at end of file
Please login to merge, or discard this patch.