Skip to content

Commit

Permalink
Fixed missing use statement for Arr class
Browse files Browse the repository at this point in the history
  • Loading branch information
mayconbordin committed Jul 20, 2015
1 parent 78e375a commit afd007a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Broadcasters/StompBroadcaster.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

use FuseSource\Stomp\Stomp;
use Illuminate\Contracts\Broadcasting\Broadcaster;
use Illuminate\Support\Arr;

class StompBroadcaster implements Broadcaster
{
Expand Down Expand Up @@ -61,4 +62,4 @@ protected function connect()
$this->stomp->connect(Arr::get($this->credentials, 'username', ''), Arr::get($this->credentials, 'password', ''));
}
}
}
}

0 comments on commit afd007a

Please sign in to comment.