Completed
Push — master ( 0f0372...5f59ce )
by Maxime
17s
created
src/Distilleries/Expendable/Http/Middleware/VerifyCsrfToken.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -5,16 +5,16 @@
 block discarded – undo
5 5
 
6 6
 class VerifyCsrfToken extends BaseVerifier {
7 7
 
8
-	/**
9
-	 * Handle an incoming request.
10
-	 *
11
-	 * @param  \Illuminate\Http\Request  $request
12
-	 * @param  \Closure  $next
13
-	 * @return mixed
14
-	 */
15
-	public function handle($request, Closure $next)
16
-	{
17
-		return parent::handle($request, $next);
18
-	}
8
+    /**
9
+     * Handle an incoming request.
10
+     *
11
+     * @param  \Illuminate\Http\Request  $request
12
+     * @param  \Closure  $next
13
+     * @return mixed
14
+     */
15
+    public function handle($request, Closure $next)
16
+    {
17
+        return parent::handle($request, $next);
18
+    }
19 19
 
20 20
 }
Please login to merge, or discard this patch.
src/Distilleries/Expendable/Models/Translation.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
     public function scopeByElement($query, Model $model)
55 55
     {
56 56
         return $query->where($this->getTable() . '.' . $this->getModelColumn(), '=', $model->getTable())
57
-                     ->where($this->getTable() . '.' . $this->getIdSourceColumn(), '=', $model->getKey());
57
+                        ->where($this->getTable() . '.' . $this->getIdSourceColumn(), '=', $model->getKey());
58 58
     }
59 59
 
60 60
 }
Please login to merge, or discard this patch.
src/Distilleries/Expendable/Exporter/ExcelExporter.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
-     * Created by PhpStorm.
4
-     * User: mfrancois
5
-     * Date: 6/02/2015
6
-     * Time: 4:37 PM
7
-     */
3
+ * Created by PhpStorm.
4
+ * User: mfrancois
5
+ * Date: 6/02/2015
6
+ * Time: 4:37 PM
7
+ */
8 8
 
9 9
 namespace Distilleries\Expendable\Exporter;
10 10
 
Please login to merge, or discard this patch.
src/Distilleries/Expendable/Helpers/Security.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -296,6 +296,10 @@  discard block
 block discarded – undo
296 296
       * @param boolean $is_image TRUE if this is an image
297 297
       * @return string The string with the evil attributes removed
298 298
       */
299
+
300
+    /**
301
+     * @param boolean $evilAttribute
302
+     */
299 303
     protected function _remove_evil_attributes($str, $is_image, $evilAttribute)
300 304
     {
301 305
         // All javascript event handlers (e.g. onload, onclick, onmouseover), style, and xmlns
@@ -419,7 +423,7 @@  discard block
 block discarded – undo
419 423
      * things like j a v a s c r i p t
420 424
      *
421 425
      * @param    type
422
-     * @return    type
426
+     * @return    string
423 427
      */
424 428
     protected function _compact_exploded_words($matches)
425 429
     {
Please login to merge, or discard this patch.
src/Distilleries/Expendable/Http/Middleware/LanguageDetector.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
      *
21 21
      * @param \Illuminate\Http\Request $request
22 22
      * @param \Closure $next
23
-     * @return mixed
23
+     * @return \Illuminate\Http\RedirectResponse
24 24
      */
25 25
     public function handle($request, Closure $next)
26 26
     {
Please login to merge, or discard this patch.
Expendable/Http/Controllers/Backend/Base/ModelBaseController.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -96,6 +96,10 @@
 block discarded – undo
96 96
         ];
97 97
     }
98 98
 
99
+    /**
100
+     * @param string $key
101
+     * @param null|integer $default_value
102
+     */
99 103
     protected function getParams(Request $request, $key, $default_value)
100 104
     {
101 105
         $element = $request->get($key);
Please login to merge, or discard this patch.