Skip to content

Commit

Permalink
Apply fixes from StyleCI (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
lianguan committed Nov 22, 2017
1 parent b82bc27 commit 35dd95d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Bus/EventBuilder/EventIteratorBuilder.php
Expand Up @@ -66,7 +66,7 @@ public function key()
*/
public function next()
{
++$this->position;
$this->position++;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion app/Foundation/Middleware/BaseMiddleware.php
Expand Up @@ -35,7 +35,7 @@ abstract public function execute();
*
* @return BaseMiddleware
*/
public function setNextMiddleware(BaseMiddleware $nextMiddleware)
public function setNextMiddleware(self $nextMiddleware)
{
$this->nextMiddleware = $nextMiddleware;

Expand Down

0 comments on commit 35dd95d

Please sign in to comment.