-
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.
Possibility to overwrite classnames with service container parameters
added unittests
- Loading branch information
Sebastian Blum
committed
Feb 2, 2016
1 parent
7efaca8
commit 346ea13
Showing
4 changed files
with
122 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
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