Completed
Push — master ( a400a4...020752 )
by David
07:41 queued 04:43
created
lib/Dwoo/Plugins/Functions/PluginUpper.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -30,14 +30,14 @@
 block discarded – undo
30 30
  */
31 31
 class PluginUpper extends Plugin implements ICompilable
32 32
 {
33
-    /**
34
-     * @param Compiler $compiler
35
-     * @param string   $value
36
-     *
37
-     * @return string
38
-     */
39
-    public static function compile(Compiler $compiler, $value)
40
-    {
41
-        return 'mb_strtoupper((string) ' . $value . ', $this->charset)';
42
-    }
33
+	/**
34
+	 * @param Compiler $compiler
35
+	 * @param string   $value
36
+	 *
37
+	 * @return string
38
+	 */
39
+	public static function compile(Compiler $compiler, $value)
40
+	{
41
+		return 'mb_strtoupper((string) ' . $value . ', $this->charset)';
42
+	}
43 43
 }
44 44
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,6 +38,6 @@
 block discarded – undo
38 38
      */
39 39
     public static function compile(Compiler $compiler, $value)
40 40
     {
41
-        return 'mb_strtoupper((string) ' . $value . ', $this->charset)';
41
+        return 'mb_strtoupper((string) '.$value.', $this->charset)';
42 42
     }
43 43
 }
44 44
\ No newline at end of file
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginOptional.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -30,14 +30,14 @@
 block discarded – undo
30 30
  */
31 31
 class PluginOptional extends Plugin implements ICompilable
32 32
 {
33
-    /**
34
-     * @param Compiler $compiler
35
-     * @param string   $value
36
-     *
37
-     * @return mixed
38
-     */
39
-    public static function compile(Compiler $compiler, $value)
40
-    {
41
-        return $value;
42
-    }
33
+	/**
34
+	 * @param Compiler $compiler
35
+	 * @param string   $value
36
+	 *
37
+	 * @return mixed
38
+	 */
39
+	public static function compile(Compiler $compiler, $value)
40
+	{
41
+		return $value;
42
+	}
43 43
 }
44 44
\ No newline at end of file
Please login to merge, or discard this patch.
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      * @param Compiler $compiler
35 35
      * @param string   $value
36 36
      *
37
-     * @return mixed
37
+     * @return string
38 38
      */
39 39
     public static function compile(Compiler $compiler, $value)
40 40
     {
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginAssign.php 2 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -32,15 +32,15 @@
 block discarded – undo
32 32
 class PluginAssign extends Plugin implements ICompilable
33 33
 {
34 34
 
35
-    /**
36
-     * @param Compiler $compiler
37
-     * @param mixed    $value
38
-     * @param mixed    $var
39
-     *
40
-     * @return string
41
-     */
42
-    public static function compile(Compiler $compiler, $value, $var)
43
-    {
44
-        return '$this->assignInScope(' . $value . ', ' . $var . ')';
45
-    }
35
+	/**
36
+	 * @param Compiler $compiler
37
+	 * @param mixed    $value
38
+	 * @param mixed    $var
39
+	 *
40
+	 * @return string
41
+	 */
42
+	public static function compile(Compiler $compiler, $value, $var)
43
+	{
44
+		return '$this->assignInScope(' . $value . ', ' . $var . ')';
45
+	}
46 46
 }
47 47
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,6 +41,6 @@
 block discarded – undo
41 41
      */
42 42
     public static function compile(Compiler $compiler, $value, $var)
43 43
     {
44
-        return '$this->assignInScope(' . $value . ', ' . $var . ')';
44
+        return '$this->assignInScope('.$value.', '.$var.')';
45 45
     }
46 46
 }
47 47
\ No newline at end of file
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginLower.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -30,14 +30,14 @@
 block discarded – undo
30 30
  */
31 31
 class PluginLower extends Plugin implements ICompilable
32 32
 {
33
-    /**
34
-     * @param Compiler $compiler
35
-     * @param string   $value
36
-     *
37
-     * @return string
38
-     */
39
-    public static function compile(Compiler $compiler, $value)
40
-    {
41
-        return 'mb_strtolower((string) ' . $value . ', $this->charset)';
42
-    }
33
+	/**
34
+	 * @param Compiler $compiler
35
+	 * @param string   $value
36
+	 *
37
+	 * @return string
38
+	 */
39
+	public static function compile(Compiler $compiler, $value)
40
+	{
41
+		return 'mb_strtolower((string) ' . $value . ', $this->charset)';
42
+	}
43 43
 }
44 44
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,6 +38,6 @@
 block discarded – undo
38 38
      */
39 39
     public static function compile(Compiler $compiler, $value)
40 40
     {
41
-        return 'mb_strtolower((string) ' . $value . ', $this->charset)';
41
+        return 'mb_strtolower((string) '.$value.', $this->charset)';
42 42
     }
43 43
 }
44 44
\ No newline at end of file
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginFetch.php 2 patches
Indentation   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -30,53 +30,53 @@
 block discarded – undo
30 30
  */
31 31
 class PluginFetch extends Plugin
32 32
 {
33
-    /**
34
-     * @param string $file
35
-     * @param null   $assign
36
-     *
37
-     * @return string
38
-     */
39
-    public function process($file, $assign = null)
40
-    {
41
-        if ($file === '') {
42
-            return '';
43
-        }
33
+	/**
34
+	 * @param string $file
35
+	 * @param null   $assign
36
+	 *
37
+	 * @return string
38
+	 */
39
+	public function process($file, $assign = null)
40
+	{
41
+		if ($file === '') {
42
+			return '';
43
+		}
44 44
 
45
-        if ($policy = $this->core->getSecurityPolicy()) {
46
-            while (true) {
47
-                if (preg_match('{^([a-z]+?)://}i', $file)) {
48
-                    $this->core->triggerError('The security policy prevents you to read files from external sources.',
49
-                        E_USER_WARNING);
50
-                }
45
+		if ($policy = $this->core->getSecurityPolicy()) {
46
+			while (true) {
47
+				if (preg_match('{^([a-z]+?)://}i', $file)) {
48
+					$this->core->triggerError('The security policy prevents you to read files from external sources.',
49
+						E_USER_WARNING);
50
+				}
51 51
 
52
-                $file = realpath($file);
53
-                $dirs = $policy->getAllowedDirectories();
54
-                foreach ($dirs as $dir => $dummy) {
55
-                    if (strpos($file, $dir) === 0) {
56
-                        break 2;
57
-                    }
58
-                }
59
-                $this->core->triggerError('The security policy prevents you to read <em>' . $file . '</em>',
60
-                    E_USER_WARNING);
61
-            }
62
-        }
63
-        $file = str_replace(array(
64
-            "\t",
65
-            "\n",
66
-            "\r"
67
-        ),
68
-            array(
69
-                '\\t',
70
-                '\\n',
71
-                '\\r'
72
-            ),
73
-            $file);
52
+				$file = realpath($file);
53
+				$dirs = $policy->getAllowedDirectories();
54
+				foreach ($dirs as $dir => $dummy) {
55
+					if (strpos($file, $dir) === 0) {
56
+						break 2;
57
+					}
58
+				}
59
+				$this->core->triggerError('The security policy prevents you to read <em>' . $file . '</em>',
60
+					E_USER_WARNING);
61
+			}
62
+		}
63
+		$file = str_replace(array(
64
+			"\t",
65
+			"\n",
66
+			"\r"
67
+		),
68
+			array(
69
+				'\\t',
70
+				'\\n',
71
+				'\\r'
72
+			),
73
+			$file);
74 74
 
75
-        $out = file_get_contents($file);
75
+		$out = file_get_contents($file);
76 76
 
77
-        if ($assign === null) {
78
-            return $out;
79
-        }
80
-        $this->core->assignInScope($out, $assign);
81
-    }
77
+		if ($assign === null) {
78
+			return $out;
79
+		}
80
+		$this->core->assignInScope($out, $assign);
81
+	}
82 82
 }
83 83
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
                         break 2;
57 57
                     }
58 58
                 }
59
-                $this->core->triggerError('The security policy prevents you to read <em>' . $file . '</em>',
59
+                $this->core->triggerError('The security policy prevents you to read <em>'.$file.'</em>',
60 60
                     E_USER_WARNING);
61 61
             }
62 62
         }
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginWordwrap.php 2 patches
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -33,17 +33,17 @@
 block discarded – undo
33 33
  */
34 34
 class PluginWordwrap extends Plugin implements ICompilable
35 35
 {
36
-    /**
37
-     * @param Compiler $compiler
38
-     * @param string   $value
39
-     * @param int      $length
40
-     * @param string   $break
41
-     * @param bool     $cut
42
-     *
43
-     * @return string
44
-     */
45
-    public static function compile(Compiler $compiler, $value, $length = 80, $break = "\n", $cut = false)
46
-    {
47
-        return 'wordwrap(' . $value . ',' . $length . ',' . $break . ',' . $cut . ')';
48
-    }
36
+	/**
37
+	 * @param Compiler $compiler
38
+	 * @param string   $value
39
+	 * @param int      $length
40
+	 * @param string   $break
41
+	 * @param bool     $cut
42
+	 *
43
+	 * @return string
44
+	 */
45
+	public static function compile(Compiler $compiler, $value, $length = 80, $break = "\n", $cut = false)
46
+	{
47
+		return 'wordwrap(' . $value . ',' . $length . ',' . $break . ',' . $cut . ')';
48
+	}
49 49
 }
50 50
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,6 +44,6 @@
 block discarded – undo
44 44
      */
45 45
     public static function compile(Compiler $compiler, $value, $length = 80, $break = "\n", $cut = false)
46 46
     {
47
-        return 'wordwrap(' . $value . ',' . $length . ',' . $break . ',' . $cut . ')';
47
+        return 'wordwrap('.$value.','.$length.','.$break.','.$cut.')';
48 48
     }
49 49
 }
50 50
\ No newline at end of file
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginReplace.php 2 patches
Indentation   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -32,21 +32,21 @@
 block discarded – undo
32 32
  */
33 33
 class PluginReplace extends Plugin implements ICompilable
34 34
 {
35
-    /**
36
-     * @param Compiler $compiler
37
-     * @param string   $value
38
-     * @param string   $search
39
-     * @param string   $replace
40
-     * @param bool     $case_sensitive
41
-     *
42
-     * @return string
43
-     */
44
-    public static function compile(Compiler $compiler, $value, $search, $replace, $case_sensitive = true)
45
-    {
46
-        if ($case_sensitive == 'false' || (bool)$case_sensitive === false) {
47
-            return 'str_ireplace(' . $search . ', ' . $replace . ', ' . $value . ')';
48
-        } else {
49
-            return 'str_replace(' . $search . ', ' . $replace . ', ' . $value . ')';
50
-        }
51
-    }
35
+	/**
36
+	 * @param Compiler $compiler
37
+	 * @param string   $value
38
+	 * @param string   $search
39
+	 * @param string   $replace
40
+	 * @param bool     $case_sensitive
41
+	 *
42
+	 * @return string
43
+	 */
44
+	public static function compile(Compiler $compiler, $value, $search, $replace, $case_sensitive = true)
45
+	{
46
+		if ($case_sensitive == 'false' || (bool)$case_sensitive === false) {
47
+			return 'str_ireplace(' . $search . ', ' . $replace . ', ' . $value . ')';
48
+		} else {
49
+			return 'str_replace(' . $search . ', ' . $replace . ', ' . $value . ')';
50
+		}
51
+	}
52 52
 }
53 53
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -43,10 +43,10 @@
 block discarded – undo
43 43
      */
44 44
     public static function compile(Compiler $compiler, $value, $search, $replace, $case_sensitive = true)
45 45
     {
46
-        if ($case_sensitive == 'false' || (bool)$case_sensitive === false) {
47
-            return 'str_ireplace(' . $search . ', ' . $replace . ', ' . $value . ')';
46
+        if ($case_sensitive == 'false' || (bool) $case_sensitive === false) {
47
+            return 'str_ireplace('.$search.', '.$replace.', '.$value.')';
48 48
         } else {
49
-            return 'str_replace(' . $search . ', ' . $replace . ', ' . $value . ')';
49
+            return 'str_replace('.$search.', '.$replace.', '.$value.')';
50 50
         }
51 51
     }
52 52
 }
53 53
\ No newline at end of file
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginRegexReplace.php 2 patches
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -30,34 +30,34 @@
 block discarded – undo
30 30
  */
31 31
 class PluginRegexReplace extends Plugin
32 32
 {
33
-    /**
34
-     * @param string $value
35
-     * @param string $search
36
-     * @param string $replace
37
-     *
38
-     * @return mixed
39
-     */
40
-    public function process($value, $search, $replace)
41
-    {
42
-        $search = (array)$search;
43
-        $cnt    = count($search);
33
+	/**
34
+	 * @param string $value
35
+	 * @param string $search
36
+	 * @param string $replace
37
+	 *
38
+	 * @return mixed
39
+	 */
40
+	public function process($value, $search, $replace)
41
+	{
42
+		$search = (array)$search;
43
+		$cnt    = count($search);
44 44
 
45
-        for ($i = 0; $i < $cnt; ++ $i) {
46
-            // Credits for this to Monte Ohrt who made smarty's regex_replace modifier
47
-            if (($pos = strpos($search[$i], "\0")) !== false) {
48
-                $search[$i] = substr($search[$i], 0, $pos);
49
-            }
45
+		for ($i = 0; $i < $cnt; ++ $i) {
46
+			// Credits for this to Monte Ohrt who made smarty's regex_replace modifier
47
+			if (($pos = strpos($search[$i], "\0")) !== false) {
48
+				$search[$i] = substr($search[$i], 0, $pos);
49
+			}
50 50
 
51
-            if (preg_match('#[a-z\s]+$#is', $search[$i], $m) && (strpos($m[0], 'e') !== false)) {
52
-                $search[$i] = substr($search[$i], 0, - strlen($m[0])) . str_replace(array(
53
-                        'e',
54
-                        ' '
55
-                    ),
56
-                        '',
57
-                        $m[0]);
58
-            }
59
-        }
51
+			if (preg_match('#[a-z\s]+$#is', $search[$i], $m) && (strpos($m[0], 'e') !== false)) {
52
+				$search[$i] = substr($search[$i], 0, - strlen($m[0])) . str_replace(array(
53
+						'e',
54
+						' '
55
+					),
56
+						'',
57
+						$m[0]);
58
+			}
59
+		}
60 60
 
61
-        return preg_replace($search, $replace, $value);
62
-    }
61
+		return preg_replace($search, $replace, $value);
62
+	}
63 63
 }
64 64
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
      */
40 40
     public function process($value, $search, $replace)
41 41
     {
42
-        $search = (array)$search;
42
+        $search = (array) $search;
43 43
         $cnt    = count($search);
44 44
 
45 45
         for ($i = 0; $i < $cnt; ++ $i) {
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
             }
50 50
 
51 51
             if (preg_match('#[a-z\s]+$#is', $search[$i], $m) && (strpos($m[0], 'e') !== false)) {
52
-                $search[$i] = substr($search[$i], 0, - strlen($m[0])) . str_replace(array(
52
+                $search[$i] = substr($search[$i], 0, - strlen($m[0])).str_replace(array(
53 53
                         'e',
54 54
                         ' '
55 55
                     ),
Please login to merge, or discard this patch.
lib/Dwoo/Plugins/Functions/PluginStringFormat.php 2 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -31,15 +31,15 @@
 block discarded – undo
31 31
  */
32 32
 class PluginStringFormat extends Plugin implements ICompilable
33 33
 {
34
-    /**
35
-     * @param Compiler $compiler
36
-     * @param string   $value
37
-     * @param string   $format
38
-     *
39
-     * @return string
40
-     */
41
-    public static function compile(Compiler $compiler, $value, $format)
42
-    {
43
-        return 'sprintf(' . $format . ',' . $value . ')';
44
-    }
34
+	/**
35
+	 * @param Compiler $compiler
36
+	 * @param string   $value
37
+	 * @param string   $format
38
+	 *
39
+	 * @return string
40
+	 */
41
+	public static function compile(Compiler $compiler, $value, $format)
42
+	{
43
+		return 'sprintf(' . $format . ',' . $value . ')';
44
+	}
45 45
 }
46 46
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,6 +40,6 @@
 block discarded – undo
40 40
      */
41 41
     public static function compile(Compiler $compiler, $value, $format)
42 42
     {
43
-        return 'sprintf(' . $format . ',' . $value . ')';
43
+        return 'sprintf('.$format.','.$value.')';
44 44
     }
45 45
 }
46 46
\ No newline at end of file
Please login to merge, or discard this patch.