-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from sebastianblum/override-classes
Possibility to overwrite classnames with service container parameters
- Loading branch information
Showing
5 changed files
with
139 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
namespace EightPoints\Bundle\GuzzleBundle\Tests\DependencyInjection\Fixtures; | ||
|
||
|
||
/** | ||
* Class FakeClient | ||
* | ||
* @package EightPoints\Bundle\GuzzleBundle\Tests\DependencyInjection\Fixtures | ||
* @author Sebastian Blum | ||
* | ||
* @since 2016-01 | ||
*/ | ||
class FakeClient | ||
{ | ||
|
||
} |
22 changes: 22 additions & 0 deletions
22
Tests/DependencyInjection/Fixtures/FakeWsseAuthMiddleware.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?php | ||
|
||
namespace EightPoints\Bundle\GuzzleBundle\Tests\DependencyInjection\Fixtures; | ||
|
||
|
||
/** | ||
* Class FakeWsseAuthMiddleware | ||
* | ||
* @package EightPoints\Bundle\GuzzleBundle\Tests\DependencyInjection\Fixtures | ||
* @author Sebastian Blum | ||
* | ||
* @since 2016-01 | ||
*/ | ||
class FakeWsseAuthMiddleware | ||
{ | ||
public function attach() | ||
{ | ||
return function (callable $handler) { | ||
|
||
}; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters