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

Commit

Permalink
Fix PHP 5.3 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Anahkiasen committed Mar 8, 2014
1 parent 5c73610 commit abdfa6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Rocketeer/Plugins/Notifier.php
Expand Up @@ -49,7 +49,7 @@ public function onQueue(TasksHandler $queue)
*
* @return void
*/
abstract protected function send($message);
abstract public function send($message);

////////////////////////////////////////////////////////////////////
/////////////////////////////// MESSAGE ////////////////////////////
Expand Down
2 changes: 1 addition & 1 deletion tests/Dummies/DummyNotifier.php
Expand Up @@ -22,7 +22,7 @@ protected function getMessageFormat()
*
* @return void
*/
protected function send($message)
public function send($message)
{
print $message;

Expand Down

0 comments on commit abdfa6c

Please sign in to comment.