-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding class skeletons for Rel Routine.
- Loading branch information
Alexandre Gaigalas
committed
Aug 27, 2012
1 parent
a858f25
commit b0ccd89
Showing
2 changed files
with
23 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace Respect\Rest\Routines; | ||
|
||
use Respect\Rest\Routes\AbstractSyncedRoutine; | ||
use Respect\Rest\Request; | ||
|
||
class Rel extends AbstractCallbackMediator implements ProxyableThrough | ||
{ | ||
} |
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,13 @@ | ||
<?php | ||
namespace Respect\Rest\Routines; | ||
|
||
use Exception; | ||
use PHPUnit_Framework_TestCase; | ||
use ReflectionFunction; | ||
|
||
/** | ||
* @covers Respect\Rest\Routines\Rel | ||
*/ | ||
class RelTest extends PHPUnit_Framework_TestCase | ||
{ | ||
} |