Completed
Push — master ( c524ca...754537 )
by Petrus
06:40
created
vendor/composer/ClassLoader.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -341,6 +341,10 @@
 block discarded – undo
341 341
         return $file;
342 342
     }
343 343
 
344
+    /**
345
+     * @param string $class
346
+     * @param string $ext
347
+     */
344 348
     private function findFileWithExtension($class, $ext)
345 349
     {
346 350
         // PSR-4 lookup
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/Arborize.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -9,6 +9,11 @@  discard block
 block discarded – undo
9 9
  */
10 10
 class HTMLPurifier_Arborize
11 11
 {
12
+    /**
13
+     * @param HTMLPurifier_Token[] $tokens
14
+     * @param HTMLPurifier_Config $config
15
+     * @param HTMLPurifier_Context $context
16
+     */
12 17
     public static function arborize($tokens, $config, $context) {
13 18
         $definition = $config->getHTMLDefinition();
14 19
         $parent = new HTMLPurifier_Token_Start($definition->info_parent);
@@ -36,6 +41,10 @@  discard block
 block discarded – undo
36 41
         return $stack[0];
37 42
     }
38 43
 
44
+    /**
45
+     * @param HTMLPurifier_Config $config
46
+     * @param HTMLPurifier_Context $context
47
+     */
39 48
     public static function flatten($node, $config, $context) {
40 49
         $level = 0;
41 50
         $nodes = array($level => new HTMLPurifier_Queue(array($node)));
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Font.php 1 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 string $string
35 35
      * @param HTMLPurifier_Config $config
36 36
      * @param HTMLPurifier_Context $context
37
-     * @return bool|string
37
+     * @return false|string
38 38
      */
39 39
     public function validate($string, $config, $context)
40 40
     {
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Length.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      * @param string $string
31 31
      * @param HTMLPurifier_Config $config
32 32
      * @param HTMLPurifier_Context $context
33
-     * @return bool|string
33
+     * @return false|string
34 34
      */
35 35
     public function validate($string, $config, $context)
36 36
     {
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/CSS/Number.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * @param string $number
25 25
      * @param HTMLPurifier_Config $config
26 26
      * @param HTMLPurifier_Context $context
27
-     * @return string|bool
27
+     * @return false|string
28 28
      * @warning Some contexts do not pass $config, $context. These
29 29
      *          variables should not be used without checking HTMLPurifier_Length
30 30
      */
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Bool.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * @param string $string
29 29
      * @param HTMLPurifier_Config $config
30 30
      * @param HTMLPurifier_Context $context
31
-     * @return bool|string
31
+     * @return boolean
32 32
      */
33 33
     public function validate($string, $config, $context)
34 34
     {
Please login to merge, or discard this patch.
ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/FrameTarget.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      * @param string $string
25 25
      * @param HTMLPurifier_Config $config
26 26
      * @param HTMLPurifier_Context $context
27
-     * @return bool|string
27
+     * @return string|false
28 28
      */
29 29
     public function validate($string, $config, $context)
30 30
     {
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/ID.php 1 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 string $id
35 35
      * @param HTMLPurifier_Config $config
36 36
      * @param HTMLPurifier_Context $context
37
-     * @return bool|string
37
+     * @return false|string
38 38
      */
39 39
     public function validate($id, $config, $context)
40 40
     {
Please login to merge, or discard this patch.
vendor/ezyang/htmlpurifier/library/HTMLPurifier/AttrDef/HTML/Nmtokens.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
      * @param string $string
11 11
      * @param HTMLPurifier_Config $config
12 12
      * @param HTMLPurifier_Context $context
13
-     * @return bool|string
13
+     * @return false|string
14 14
      */
15 15
     public function validate($string, $config, $context)
16 16
     {
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      * @param string $string
35 35
      * @param HTMLPurifier_Config $config
36 36
      * @param HTMLPurifier_Context $context
37
-     * @return array
37
+     * @return string[]
38 38
      */
39 39
     protected function split($string, $config, $context)
40 40
     {
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      * Template method for removing certain tokens based on arbitrary criteria.
57 57
      * @note If we wanted to be really functional, we'd do an array_filter
58 58
      *       with a callback. But... we're not.
59
-     * @param array $tokens
59
+     * @param string[] $tokens
60 60
      * @param HTMLPurifier_Config $config
61 61
      * @param HTMLPurifier_Context $context
62 62
      * @return array
Please login to merge, or discard this patch.