Skip to content
This repository has been archived by the owner on Jan 29, 2020. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/zendframework/zf2 into qu…
Browse files Browse the repository at this point in the history
…ickfix/sharedem-type-preference
  • Loading branch information
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .travis/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ for tested in "${testedcomponents[@]}"
do
echo "$tested:"
phpunit -c $testdir/phpunit.xml $testdir/$tested
let "result = $result || $?"
result=$(($result || $?))
done

exit $result
exit $result
2 changes: 1 addition & 1 deletion .travis/tested-components
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Zend/Crypt
Zend/Currency
Zend/Db
Zend/Di
Zend/Docbook
Zend/DocBook
Zend/Dojo
Zend/Dom
Zend/EventManager
Expand Down
6 changes: 3 additions & 3 deletions src/Definition/Annotation/Inject.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Zend\Di\Definition\Annotation;

use Zend\Code\Annotation\Annotation;
use Zend\Code\Annotation\AnnotationInterface;

class Inject implements Annotation
class Inject implements AnnotationInterface
{

protected $content = null;
Expand All @@ -13,4 +13,4 @@ public function initialize($content)
{
$this->content = $content;
}
}
}
6 changes: 3 additions & 3 deletions src/Definition/Annotation/Instantiator.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Zend\Di\Definition\Annotation;

use Zend\Code\Annotation\Annotation;
use Zend\Code\Annotation\AnnotationInterface;

class Instantiator implements Annotation
class Instantiator implements AnnotationInterface
{

protected $content = null;
Expand All @@ -13,4 +13,4 @@ public function initialize($content)
{
$this->content = $content;
}
}
}

0 comments on commit d3b33d9

Please sign in to comment.