Skip to content

Commit

Permalink
Merge pull request #12 from vedmant/analysis-lKrK4J
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
vedmant authored Feb 17, 2020
2 parents 0f01500 + 3934da2 commit 8be228a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Shortcode.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function atts(): array
}

/**
* Validate and return attributes
* Validate and return attributes.
*
* @param array $rules
* @return array
Expand Down
2 changes: 1 addition & 1 deletion tests/Unit/ShortcodeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public function testValidation()
try {
$shortcode->render(null);
$this->fail('Expected ValidationException not thrown');
} catch(ValidationException $e) {
} catch (ValidationException $e) {
$this->assertCount(3, $e->errors());
}
}
Expand Down

0 comments on commit 8be228a

Please sign in to comment.