Skip to content

Commit

Permalink
Scrutinizer fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikbjorn committed Aug 14, 2014
1 parent 7dacfef commit 02333a3
Show file tree
Hide file tree
Showing 8 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion spec/Tacker/ConfiguratorSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace spec\Tacker;

use PhpSpec\ObjectBehavior;
use Prophecy\Argument;

class ConfiguratorSpec extends ObjectBehavior
{
Expand Down
1 change: 0 additions & 1 deletion spec/Tacker/Loader/CacheLoaderSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ class CacheLoaderSpec extends \PhpSpec\ObjectBehavior
{
/**
* @param Symfony\Component\Config\Loader\LoaderInterface $loader
* @param Tacker\Normalizer $normalizer
* @param Tacker\ResourceCollection $resources
*/
function let($loader, $resources)
Expand Down
1 change: 0 additions & 1 deletion spec/Tacker/Loader/IniFileLoaderSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace spec\Tacker\Loader;

use Prophecy\Argument;
use Symfony\Component\Config\FileLocator;

class IniFileLoaderSpec extends \PhpSpec\ObjectBehavior
Expand Down
1 change: 0 additions & 1 deletion spec/Tacker/Loader/JsonFileLoaderSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace spec\Tacker\Loader;

use Prophecy\Argument;
use Symfony\Component\Config\FileLocator;

class JsonFileLoaderSpec extends \PhpSpec\ObjectBehavior
Expand Down
1 change: 0 additions & 1 deletion spec/Tacker/Loader/NormalizerLoaderSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace spec\Tacker\Loader;

use PhpSpec\ObjectBehavior;
use Prophecy\Argument;

class NormalizerLoaderSpec extends ObjectBehavior
{
Expand Down
1 change: 0 additions & 1 deletion spec/Tacker/Loader/YamlFileLoaderSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace spec\Tacker\Loader;

use Prophecy\Argument;
use Symfony\Component\Config\FileLocator;

class YamlFileLoaderSpec extends \PhpSpec\ObjectBehavior
Expand Down
1 change: 0 additions & 1 deletion spec/Tacker/LoaderBuilderSpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace spec\Tacker;

use PhpSpec\ObjectBehavior;
use Prophecy\Argument;

class LoaderBuilderSpec extends ObjectBehavior
{
Expand Down
3 changes: 3 additions & 0 deletions src/Loader/CacheLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ public function getCacheDir()
return $this->cacheDir;
}

/**
* @param boolean $debug
*/
public function setDebug($debug)
{
$this->debug = $debug;
Expand Down

0 comments on commit 02333a3

Please sign in to comment.