Skip to content

Commit

Permalink
CS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bakura10 committed Dec 5, 2013
1 parent f5d640c commit dd9c062
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ before_script:
script:
- ./vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml --group=Coverage
- ./vendor/bin/phpunit --group=Functional
- ./vendor/bin/phpcs --standard=PSR2 ./src/ ./tests/
- ./vendor/bin/phpcs --standard=PSR2 ./src/

after_script:
- php vendor/bin/coveralls -v
Expand Down
3 changes: 2 additions & 1 deletion src/ZfrRest/Resource/Metadata/Driver/AnnotationDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ public function loadMetadataForClass(ReflectionClass $class)
// We search for the "ExposeAssociation" annotation at property level, so that we can say that the
// association can be traversed
$exposeAssociationAnnotation = $this->annotationReader->getPropertyAnnotation(
$classProperty, 'ZfrRest\Resource\Metadata\Annotation\ExposeAssociation'
$classProperty,
'ZfrRest\Resource\Metadata\Annotation\ExposeAssociation'
);

if (null !== $exposeAssociationAnnotation && $exposeAssociationAnnotation->getValue()) {
Expand Down

0 comments on commit dd9c062

Please sign in to comment.