Skip to content

Commit

Permalink
Finalise concrete classes
Browse files Browse the repository at this point in the history
  • Loading branch information
Stratadox committed Feb 18, 2018
1 parent c6b81c3 commit c3039e4
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/AlterableCollectionEntryUpdater.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @package Stratadox\Hydrate
* @author Stratadox
*/
class AlterableCollectionEntryUpdater implements UpdatesTheProxyOwner
final class AlterableCollectionEntryUpdater implements UpdatesTheProxyOwner
{
private $owner;
private $propertyShouldReference;
Expand Down
2 changes: 1 addition & 1 deletion src/AlterableCollectionEntryUpdaterFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @package Stratadox\Hydrate
* @author Stratadox
*/
class AlterableCollectionEntryUpdaterFactory implements ProducesOwnerUpdaters
final class AlterableCollectionEntryUpdaterFactory implements ProducesOwnerUpdaters
{
// @todo allow passing the closure
public function makeUpdaterFor(
Expand Down
2 changes: 1 addition & 1 deletion src/ArrayEntryUpdater.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* @package Stratadox\Hydrate
* @author Stratadox
*/
class ArrayEntryUpdater implements UpdatesTheProxyOwner
final class ArrayEntryUpdater implements UpdatesTheProxyOwner
{
private $owner;
private $propertyShouldReference;
Expand Down
2 changes: 1 addition & 1 deletion src/ArrayEntryUpdaterFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @package Stratadox\Hydrate
* @author Stratadox
*/
class ArrayEntryUpdaterFactory implements ProducesOwnerUpdaters
final class ArrayEntryUpdaterFactory implements ProducesOwnerUpdaters
{
// @todo allow passing the closure
public function makeUpdaterFor(
Expand Down
2 changes: 1 addition & 1 deletion src/PropertyUpdater.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* @package Stratadox\Hydrate
* @author Stratadox
*/
class PropertyUpdater implements UpdatesTheProxyOwner
final class PropertyUpdater implements UpdatesTheProxyOwner
{
private $owner;
private $propertyShouldReference;
Expand Down
2 changes: 1 addition & 1 deletion src/PropertyUpdaterFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* @package Stratadox\Hydrate
* @author Stratadox
*/
class PropertyUpdaterFactory implements ProducesOwnerUpdaters
final class PropertyUpdaterFactory implements ProducesOwnerUpdaters
{
// @todo allow passing the closure
public function makeUpdaterFor(
Expand Down
2 changes: 1 addition & 1 deletion src/ProxyFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* @author Stratadox
* @package Stratadox/Hydrate
*/
class ProxyFactory implements ProducesProxies
final class ProxyFactory implements ProducesProxies
{
private $makeProxy;
private $loaderFactory;
Expand Down
2 changes: 1 addition & 1 deletion src/UnexpectedPropertyType.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use function is_object as isItAnObject;
use function sprintf as withMessage;

class UnexpectedPropertyType extends InvalidArgumentException
final class UnexpectedPropertyType extends InvalidArgumentException
{
public static function expectedThe(
string $interface,
Expand Down

0 comments on commit c3039e4

Please sign in to comment.