Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit a13331e

Browse files
committed
Add spaces after NOT operator to satisfy travis-ci
1 parent b18bf0b commit a13331e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/View/Helper/AbstractHelper.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ protected function translateHtmlAttributeValue($key, $value)
468468
*/
469469
public function addValidAttribute($attribute)
470470
{
471-
if (!$this->isValidAttributeName($attribute)) {
471+
if (! $this->isValidAttributeName($attribute)) {
472472
throw new InvalidArgumentException(sprintf('%s is not a valid attribute name', $attribute));
473473
}
474474

@@ -485,7 +485,7 @@ public function addValidAttribute($attribute)
485485
*/
486486
public function addValidAttributePrefix($prefix)
487487
{
488-
if (!$this->isValidAttributeName($prefix)) {
488+
if (! $this->isValidAttributeName($prefix)) {
489489
throw new InvalidArgumentException(sprintf('%s is not a valid attribute prefix', $prefix));
490490
}
491491

0 commit comments

Comments
 (0)