Skip to content

Commit

Permalink
Fix typo in method name. (consolidation#851)
Browse files Browse the repository at this point in the history
  • Loading branch information
q0rban authored and greg-1-anderson committed Apr 2, 2019
1 parent 9cd779e commit 98ed6e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Collection/CollectionBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -273,20 +273,20 @@ public function getState()

public function storeState($key, $source = '')
{
return $this->callCollectionStateFuntion(__FUNCTION__, func_get_args());
return $this->callCollectionStateFunction(__FUNCTION__, func_get_args());
}

public function deferTaskConfiguration($functionName, $stateKey)
{
return $this->callCollectionStateFuntion(__FUNCTION__, func_get_args());
return $this->callCollectionStateFunction(__FUNCTION__, func_get_args());
}

public function defer($callback)
{
return $this->callCollectionStateFuntion(__FUNCTION__, func_get_args());
return $this->callCollectionStateFunction(__FUNCTION__, func_get_args());
}

protected function callCollectionStateFuntion($functionName, $args)
protected function callCollectionStateFunction($functionName, $args)
{
$currentTask = ($this->currentTask instanceof WrappedTaskInterface) ? $this->currentTask->original() : $this->currentTask;

Expand Down

0 comments on commit 98ed6e4

Please sign in to comment.