Failed Conditions
Push — psr2 ( e24a74...d8b492 )
by Andreas
03:19
created
lib/exe/css.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -484,6 +484,9 @@
 block discarded – undo
484 484
     protected $location;             // base url location of the CSS/Less file
485 485
     protected $relative_path = null;
486 486
 
487
+    /**
488
+     * @param string $file
489
+     */
487 490
     public function __construct($file) {
488 491
         $this->filepath = $file;
489 492
     }
Please login to merge, or discard this patch.
inc/Debug/PropertyDeprecationHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
      * Like property_exists but also check for non-visible private properties and returns which
102 102
      * class in the inheritance chain declared the property.
103 103
      * @param string $property
104
-     * @return string|bool Best guess for the class in which the property is defined.
104
+     * @return string|false Best guess for the class in which the property is defined.
105 105
      */
106 106
     private function deprecationHelperGetPropertyOwner($property)
107 107
     {
Please login to merge, or discard this patch.
inc/Cache/Cache.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -54,6 +54,9 @@
 block discarded – undo
54 54
         return $this->_event;
55 55
     }
56 56
 
57
+    /**
58
+     * @param string $_event
59
+     */
57 60
     public function setEvent($_event)
58 61
     {
59 62
         $this->_event = $_event;
Please login to merge, or discard this patch.
inc/infoutils.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -444,7 +444,6 @@
 block discarded – undo
444 444
  * Log accesses to deprecated fucntions to the debug log
445 445
  *
446 446
  * @param string $alternative The function or method that should be used instead
447
- * @param string|null $deprecatedThing What is deprecated if not the current method
448 447
  * @triggers INFO_DEPRECATION_LOG
449 448
  */
450 449
 function dbg_deprecated($alternative = '') {
Please login to merge, or discard this patch.