Skip to content

Commit

Permalink
Fix not_operator_with_successor_space cs rule in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fritz-gerneth committed Jun 30, 2017
1 parent c1db55e commit 7227f94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Projection/InMemoryEventStoreProjectorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public function it_throws_exception_when_invalid_sleep_given(): void
*/
public function it_dispatches_pcntl_signals_when_enabled(): void
{
if ( !extension_loaded('pcntl')) {
if (! extension_loaded('pcntl')) {
$this->markTestSkipped('The PCNTL extension is not available.');

return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ public function it_throws_exception_when_invalid_wrapped_event_store_instance_pa
*/
public function it_dispatches_pcntl_signals_when_enabled(): void
{
if ( !extension_loaded('pcntl')) {
if (! extension_loaded('pcntl')) {
$this->markTestSkipped('The PCNTL extension is not available.');

return;
Expand Down

0 comments on commit 7227f94

Please sign in to comment.