diff --git a/application/views/helpers/FormSimpleNote.php b/application/views/helpers/FormSimpleNote.php index d8315f4..53d5adb 100644 --- a/application/views/helpers/FormSimpleNote.php +++ b/application/views/helpers/FormSimpleNote.php @@ -1,11 +1,8 @@ _getInfo($name, $value); diff --git a/application/views/helpers/RenderStateBadges.php b/application/views/helpers/RenderStateBadges.php index 70633aa..f0c8e79 100644 --- a/application/views/helpers/RenderStateBadges.php +++ b/application/views/helpers/RenderStateBadges.php @@ -2,11 +2,9 @@ /** * @deprecated - * @codingStandardsIgnoreStart */ -class Zend_View_Helper_RenderStateBadges extends Zend_View_Helper_Abstract +class Zend_View_Helper_RenderStateBadges extends Zend_View_Helper_Abstract // phpcs:ignore { - // @codingStandardsIgnoreEnd public function renderStateBadges($summary) { $html = ''; @@ -23,7 +21,7 @@ class Zend_View_Helper_RenderStateBadges extends Zend_View_Helper_Abstract . '" title="' . mt('monitoring', $state) . '">' . $cnt . ''; } - + if ($html !== '') { $html = '
' . $html . '
'; } diff --git a/library/Businessprocess/Web/Form/Element/SimpleNote.php b/library/Businessprocess/Web/Form/Element/SimpleNote.php index 9f757f2..99560a7 100644 --- a/library/Businessprocess/Web/Form/Element/SimpleNote.php +++ b/library/Businessprocess/Web/Form/Element/SimpleNote.php @@ -8,13 +8,11 @@ class SimpleNote extends FormElement /** * Always ignore this element - * @codingStandardsIgnoreStart * * @var boolean */ - protected $_ignore = true; - // @codingStandardsIgnoreEnd - + protected $_ignore = true; // phpcs:ignore + public function isValid($value, $context = null) { return true; diff --git a/test/phpunit-compat.php b/test/phpunit-compat.php index 2b1be3a..db47d8c 100644 --- a/test/phpunit-compat.php +++ b/test/phpunit-compat.php @@ -2,9 +2,6 @@ use PHPUnit\Framework\TestCase; -/** - * @codingStandardsIgnoreStart - */ -class PHPUnit_Framework_TestCase extends TestCase +class PHPUnit_Framework_TestCase extends TestCase // phpcs:ignore { }