Skip to content

Commit

Permalink
Classes marked as final
Browse files Browse the repository at this point in the history
  • Loading branch information
tomphp committed Sep 23, 2015
1 parent 642aba8 commit 58cae83
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* Added: Sub providers
* Updated: `TomPHP\ConfigServiceProvider\InflectorConfigServiceProvider` is
now a sub provider
* Update: Provider classes are marked as final
* Removed: `TomPHP\ConfigServiceProvider\Config` static factory

### 0.2.1 (2015-09-21)
Expand Down
2 changes: 1 addition & 1 deletion src/ConfigServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use League\Container\ServiceProvider\BootableServiceProviderInterface;
use TomPHP\ConfigServiceProvider\InflectorConfigServiceProvider;

class ConfigServiceProvider extends AbstractServiceProvider implements
final class ConfigServiceProvider extends AbstractServiceProvider implements
BootableServiceProviderInterface
{
const DEFAULT_PREFIX = 'config';
Expand Down
2 changes: 1 addition & 1 deletion src/InflectorConfigServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use League\Container\ServiceProvider\AbstractServiceProvider;
use League\Container\ServiceProvider\BootableServiceProviderInterface;

class InflectorConfigServiceProvider extends AbstractServiceProvider implements
final class InflectorConfigServiceProvider extends AbstractServiceProvider implements
BootableServiceProviderInterface,
ConfigurableServiceProvider
{
Expand Down
2 changes: 1 addition & 1 deletion tests/ConfigServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use TomPHP\ConfigServiceProvider\ConfigServiceProvider;
use Prophecy\Argument;

class ConfigServiceProviderTest extends PHPUnit_Framework_TestCase
final class ConfigServiceProviderTest extends PHPUnit_Framework_TestCase
{
/**
* @var Container
Expand Down
2 changes: 1 addition & 1 deletion tests/InflectorConfigServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use PHPUnit_Framework_TestCase;
use TomPHP\ConfigServiceProvider\InflectorConfigServiceProvider;

class InflectorConfigServiceProviderTest extends PHPUnit_Framework_TestCase
final class InflectorConfigServiceProviderTest extends PHPUnit_Framework_TestCase
{
/**
* @var Container
Expand Down

0 comments on commit 58cae83

Please sign in to comment.