Skip to content

Commit

Permalink
Avoid restriction on abstract class names
Browse files Browse the repository at this point in the history
  • Loading branch information
bradfeehan committed May 5, 2014
1 parent af0f37f commit 1a51f36
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tools:
naming:
enabled: true
local_variable: '^[a-z][a-zA-Z0-9]*$'
abstract_class_name: ^Abstract|Factory$
abstract_class_name: ^.*$
utility_class_name: 'Utils?$'
constant_name: '^[A-Z][A-Z0-9]*(?:_[A-Z0-9]+)*$'
property_name: '^[a-z][a-zA-Z0-9]*$'
Expand Down
2 changes: 1 addition & 1 deletion lib/ServiceDescriptionLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class ServiceDescriptionLoader extends GuzzleServiceDescriptionLoader
*
* @var \BradFeehan\GuzzleModularServiceDescriptions\ConfigLoader\ConfigLoaderInterface
*/
private $this->configLoader;
private $configLoader;


/**
Expand Down

0 comments on commit 1a51f36

Please sign in to comment.