Skip to content

Commit

Permalink
Merge pull request #5 from FriendsOfApi/patch-2
Browse files Browse the repository at this point in the history
Made all models final
  • Loading branch information
prolic authored Feb 1, 2017
2 parents 7b13715 + 4f77e31 commit d451466
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/Model/Key/KeyCreated.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Sascha-Oliver Prolic <[email protected]>
*/
class KeyCreated implements CreatableFromArray
final class KeyCreated implements CreatableFromArray
{
/**
* @var string
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Key/KeySearchResult.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Sascha-Oliver Prolic <[email protected]>
*/
class KeySearchResult implements CreatableFromArray
final class KeySearchResult implements CreatableFromArray
{
/**
* @var string
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Key/KeySearchResults.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Sascha-Oliver Prolic <[email protected]>
*/
class KeySearchResults implements CreatableFromArray, \IteratorAggregate
final class KeySearchResults implements CreatableFromArray, \IteratorAggregate
{
/**
* @var KeySearchResult[]
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Locale/Uploaded.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* @author Sascha-Oliver Prolic <[email protected]>
*/
class Uploaded implements CreatableFromArray
final class Uploaded implements CreatableFromArray
{
/**
* @var string
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Translation/Index.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Sascha-Oliver Prolic <[email protected]>
*/
class Index implements CreatableFromArray, \IteratorAggregate
final class Index implements CreatableFromArray, \IteratorAggregate
{
/**
* @var Translation[]
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Translation/Key.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Sascha-Oliver Prolic <[email protected]>
*/
class Key implements CreatableFromArray
final class Key implements CreatableFromArray
{
/**
* @var string
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Translation/Locale.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Sascha-Oliver Prolic <[email protected]>
*/
class Locale implements CreatableFromArray
final class Locale implements CreatableFromArray
{
/**
* @var string
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Translation/Translation.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Sascha-Oliver Prolic <[email protected]>
*/
class Translation implements CreatableFromArray
final class Translation implements CreatableFromArray
{
/**
* @var string
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Translation/TranslationCreated.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Sascha-Oliver Prolic <[email protected]>
*/
class TranslationCreated implements CreatableFromArray
final class TranslationCreated implements CreatableFromArray
{
/**
* @var string
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Translation/TranslationUpdated.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Sascha-Oliver Prolic <[email protected]>
*/
class TranslationUpdated implements CreatableFromArray
final class TranslationUpdated implements CreatableFromArray
{
/**
* @var string
Expand Down
2 changes: 1 addition & 1 deletion src/Model/Translation/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @author Sascha-Oliver Prolic <[email protected]>
*/
class User implements CreatableFromArray
final class User implements CreatableFromArray
{
/**
* @var string
Expand Down

0 comments on commit d451466

Please sign in to comment.