Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
More hand made fixes to last commits, phpdoc cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thinkscape committed Aug 8, 2012
1 parent cd3886b commit d3ffe88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/CallbackHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
class CallbackHandler
{
/**
* @var string|array PHP callable to invoke
* @var string|array|callable PHP callback to invoke
*/
protected $callback;

Expand All @@ -54,7 +54,7 @@ class CallbackHandler
*
* @param string $event Event to which slot is subscribed
* @param string|array|object|callable $callback PHP callback
* @param array $options Options used by the callable handler (e.g., priority)
* @param array $options Options used by the callback handler (e.g., priority)
* @return void
*/
public function __construct($callback, array $metadata = array())
Expand Down Expand Up @@ -160,7 +160,7 @@ public function getCallback()
/**
* Invoke handler
*
* @param array $args Arguments to pass to callable
* @param array $args Arguments to pass to callback
* @return mixed
*/
public function call(array $args = array())
Expand Down

0 comments on commit d3ffe88

Please sign in to comment.