Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
adamaltman authored Dec 29, 2017
1 parent 0e1e18c commit edb503f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ abstract class BaseProjection implements Projection
public function project(DomainEvents $eventStream)
{
foreach ($eventStream as $event) {
$projectMetohd = 'project' . ClassFunctions::short($event);
$this->$projectMetohd($event);
$projectMethod = 'project' . ClassFunctions::short($event);
$this->$projectMethod($event);
}
}
}
}

0 comments on commit edb503f

Please sign in to comment.