Completed
Push — master ( 3825d8...4c8770 )
by Michael
06:10
created
installer/vendor/twig/twig/lib/Twig/ExtensionInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -20,6 +20,7 @@
 block discarded – undo
20 20
      * Sets the parser associated with this token parser
21 21
      *
22 22
      * @param $parser A Twig_Parser instance
23
+     * @return void
23 24
      */
24 25
     public function setParser(Twig_Parser $parser);
25 26
 
Please login to merge, or discard this patch.
installer/vendor/twig/twig/lib/Twig/FilterCallableInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
  */
18 18
 interface Twig_TestCallableInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function getCallable();
21 24
 }
Please login to merge, or discard this patch.
installer/vendor/twig/twig/lib/Twig/FunctionCallableInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -17,5 +17,8 @@
 block discarded – undo
17 17
  */
18 18
 interface Twig_TestCallableInterface
19 19
 {
20
+    /**
21
+     * @return void
22
+     */
20 23
     public function getCallable();
21 24
 }
Please login to merge, or discard this patch.
installer/vendor/twig/twig/lib/Twig/Node/Expression/Unary.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -21,6 +21,9 @@
 block discarded – undo
21 21
  */
22 22
 class Twig_Node_SandboxedPrint extends Twig_Node_Print
23 23
 {
24
+    /**
25
+     * @param integer $lineno
26
+     */
24 27
     public function __construct(Twig_Node_Expression $expr, $lineno, $tag = null)
25 28
     {
26 29
         parent::__construct($expr, $lineno, $tag);
Please login to merge, or discard this patch.
vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedFilterError.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
 {
19 19
     private $tagName;
20 20
 
21
+    /**
22
+     * @param string $message
23
+     */
21 24
     public function __construct($message, $tagName, $lineno = -1, $filename = null, Exception $previous = null)
22 25
     {
23 26
         parent::__construct($message, $lineno, $filename, $previous);
Please login to merge, or discard this patch.
vendor/twig/twig/lib/Twig/Sandbox/SecurityNotAllowedFunctionError.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -18,6 +18,9 @@
 block discarded – undo
18 18
 {
19 19
     private $tagName;
20 20
 
21
+    /**
22
+     * @param string $message
23
+     */
21 24
     public function __construct($message, $tagName, $lineno = -1, $filename = null, Exception $previous = null)
22 25
     {
23 26
         parent::__construct($message, $lineno, $filename, $previous);
Please login to merge, or discard this patch.
installer/vendor/twig/twig/lib/Twig/SimpleFilter.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -71,6 +71,9 @@
 block discarded – undo
71 71
         return $tests;
72 72
     }
73 73
 
74
+    /**
75
+     * @param string $name
76
+     */
74 77
     protected function createFunction($name, array $arguments = array())
75 78
     {
76 79
         return new Twig_Node_Expression_Function($name, new Twig_Node($arguments), 1);
Please login to merge, or discard this patch.
installer/vendor/twig/twig/lib/Twig/SimpleFunction.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -71,6 +71,9 @@
 block discarded – undo
71 71
         return $tests;
72 72
     }
73 73
 
74
+    /**
75
+     * @param string $name
76
+     */
74 77
     protected function createFunction($name, array $arguments = array())
75 78
     {
76 79
         return new Twig_Node_Expression_Function($name, new Twig_Node($arguments), 1);
Please login to merge, or discard this patch.
installer/vendor/twig/twig/lib/Twig/SimpleTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -71,6 +71,9 @@
 block discarded – undo
71 71
         return $tests;
72 72
     }
73 73
 
74
+    /**
75
+     * @param string $name
76
+     */
74 77
     protected function createFunction($name, array $arguments = array())
75 78
     {
76 79
         return new Twig_Node_Expression_Function($name, new Twig_Node($arguments), 1);
Please login to merge, or discard this patch.