Skip to content

Commit

Permalink
fix type hinting
Browse files Browse the repository at this point in the history
  • Loading branch information
holyshared committed Apr 21, 2015
1 parent 9873692 commit 45b89b2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/loader/ArtLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace holyshared\fixture\loader;

use holyshared\fixture\Loadable;
use holyshared\fixture\Loader;
use holyshared\fixture\FixtureLoader;
use League\CLImate\CLImate;
use League\CLImate\Util\Output;
Expand All @@ -32,7 +32,7 @@ final class ArtLoader implements FixtureLoader
private $output;

/**
* @var \holyshared\fixture\Loadable
* @var \holyshared\fixture\Loader
*/
private $loader;

Expand All @@ -47,9 +47,9 @@ public function getName()
/**
* Create a new art loader
*
* @param \holyshared\fixture\Loadable
* @param \holyshared\fixture\Loader
*/
public function __construct(Loadable $loader)
public function __construct(Loader $loader)
{
$this->output = new Output();
$this->output->sameLine();
Expand Down
8 changes: 4 additions & 4 deletions src/loader/MustacheLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace holyshared\fixture\loader;

use holyshared\fixture\Loadable;
use holyshared\fixture\Loader;
use holyshared\fixture\FixtureLoader;
use Mustache_Engine;

Expand All @@ -22,7 +22,7 @@ final class MustacheLoader implements FixtureLoader
const NAME = 'mustache';

/**
* @var \holyshared\fixture\Loadable
* @var \holyshared\fixture\Loader
*/
private $loader;

Expand All @@ -34,9 +34,9 @@ final class MustacheLoader implements FixtureLoader
/**
* Create a new template loader of mustache
*
* @param \holyshared\fixture\Loadable
* @param \holyshared\fixture\Loader
*/
public function __construct(Loadable $loader)
public function __construct(Loader $loader)
{
$this->loader = $loader;
$this->mustache = new Mustache_Engine();
Expand Down

0 comments on commit 45b89b2

Please sign in to comment.