Skip to content

Commit

Permalink
Fix : Correction du namespace des invokers.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexandre Del Vecchio committed Mar 2, 2018
1 parent 7cf40b9 commit 59fc7fc
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php


namespace Digitick\Foundation\Fuse\Handler;
namespace Digitick\Foundation\Fuse\Invoker;


use Digitick\Foundation\Fuse\CircuitBreaker\CircuitBreakerInterface;
Expand Down
2 changes: 1 addition & 1 deletion src/Digitick/Foundation/Fuse/Invoker/InvokerAbstract.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Digitick\Foundation\Fuse\Handler;
namespace Digitick\Foundation\Fuse\Invoker;


use Digitick\Foundation\Fuse\CircuitBreaker\CircuitBreakerInterface;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php


namespace Digitick\Foundation\Fuse\Handler;
namespace Digitick\Foundation\Fuse\Invoker;

use Digitick\Foundation\Fuse\CircuitBreaker\CircuitBreakerInterface;
use Digitick\Foundation\Fuse\Command\AbstractCommand;
Expand Down
2 changes: 1 addition & 1 deletion src/Digitick/Foundation/Fuse/Invoker/SystemInvoker.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php


namespace Digitick\Foundation\Fuse\Handler;
namespace Digitick\Foundation\Fuse\Invoker;

use Digitick\Foundation\Fuse\Command\SystemCommand;
use Digitick\Foundation\Fuse\Exception\{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php


namespace Digitick\Foundation\Tests\Fuse\Handler;
namespace Digitick\Foundation\Tests\Fuse\Invoker;


use Digitick\Foundation\Fuse\Handler\HttpCommandInvoker;
use Digitick\Foundation\Fuse\Invoker\HttpCommandInvoker;
use GuzzleHttp\Promise\Promise;
use GuzzleHttp\Promise\PromiseInterface;
use Prophecy\Argument;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php


namespace Digitick\Foundation\Tests\Fuse\Handler;
namespace Digitick\Foundation\Tests\Fuse\Invoker;


use Digitick\Foundation\Fuse\Handler\SystemInvoker;
use Digitick\Foundation\Fuse\Invoker\SystemInvoker;
use Prophecy\Argument;

class SystemInvokerTest extends \PHPUnit_Framework_TestCase
Expand Down

0 comments on commit 59fc7fc

Please sign in to comment.