This repository has been archived by the owner on Feb 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
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 #15 from hboomsma/feature/codestyle
codestyle
- Loading branch information
Showing
21 changed files
with
147 additions
and
119 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 |
---|---|---|
@@ -1,6 +1,4 @@ | ||
/vendor/ | ||
/cache/ | ||
/.buildpath | ||
/.project | ||
/.settings/ | ||
/composer.lock | ||
/phpcs.xml |
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
File renamed without changes.
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
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
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
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
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
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<?php | ||
use Hostnet\HnDependencyInjectionPlugin\ApplicationConfiguration; | ||
namespace Hostnet\HnDependencyInjectionPlugin; | ||
|
||
class ApplicationConfigurationTest extends PHPUnit_Framework_TestCase | ||
class ApplicationConfigurationTest extends \PHPUnit_Framework_TestCase | ||
{ | ||
public function testGetConfigCache() | ||
{ | ||
$config = new ApplicationConfiguration('test', true); | ||
$cache = $config->getConfigCache(); | ||
$this->assertInstanceOf('Hostnet\HnDependencyInjectionPlugin\ConfigCache', $cache); | ||
public function testGetConfigCache() | ||
{ | ||
$config = new ApplicationConfiguration('test', true); | ||
$cache = $config->getConfigCache(); | ||
$this->assertInstanceOf('Hostnet\HnDependencyInjectionPlugin\ConfigCache', $cache); | ||
|
||
// And only one is made | ||
$this->assertTrue($cache === $config->getConfigCache()); | ||
} | ||
} | ||
// And only one is made | ||
$this->assertTrue($cache === $config->getConfigCache()); | ||
} | ||
} |
Oops, something went wrong.