Skip to content

Commit

Permalink
Fixed some docblocks
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkRedeman committed Apr 13, 2015
1 parent 9d3ec14 commit c422eff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 10 deletions.
4 changes: 2 additions & 2 deletions src/Adapters/EventDispatcherAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ abstract class EventDispatcherAdapter implements SymfonyDispatcher

/**
* The Symfony Event Dispatcher
* @var Symfony\Component\EventDispatcher
* @var Symfony\Component\EventDispatcher\EventDispatcherInterface
*/
protected $symfonyDispatcher;

Expand Down Expand Up @@ -96,7 +96,7 @@ public function addSubscriber(EventSubscriberInterface $subscriber)
* Removes an event listener from the specified events.
*
* @param string $eventName The event to remove a listener from
* @param callable $listener The listener to remove
* @param callable $listenerToBeRemoved The listener to remove
*/
public function removeListener($eventName, $listenerToBeRemoved)
{
Expand Down
3 changes: 1 addition & 2 deletions src/TmdbServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@ class TmdbServiceProvider extends ServiceProvider

/**
* Construct the TMDB service provider
*
* @return void
*/
public function __construct()
{
Expand All @@ -46,6 +44,7 @@ public function __construct()

$this->registerProvider();
}

/**
* Bootstrap the application events.
*
Expand Down
3 changes: 0 additions & 3 deletions src/TmdbServiceProviderLaravel4.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
namespace Tmdb\Laravel;

use Illuminate\Support\ServiceProvider;
use Symfony\Component\Process\Exception\RuntimeException;
use Tmdb\ApiToken;
use Tmdb\Client;

class TmdbServiceProviderLaravel4 extends ServiceProvider {

Expand Down
4 changes: 1 addition & 3 deletions src/TmdbServiceProviderLaravel5.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
namespace Tmdb\Laravel;

use Illuminate\Support\ServiceProvider;
use Tmdb\ApiToken;
use Tmdb\Client;

class TmdbServiceProviderLaravel5 extends ServiceProvider {

Expand Down Expand Up @@ -58,6 +56,6 @@ private function setupConfiguration()
*/
private function defaultConfig()
{
return __DIR__.'/config/tmdb.php';
return __DIR__ . '/config/tmdb.php';
}
}

0 comments on commit c422eff

Please sign in to comment.