~ubuntu-branches/ubuntu/wily/symfony/wily

« back to all changes in this revision

Viewing changes to src/Symfony/Component/Routing/Loader/AnnotationFileLoader.php

  • Committer: Package Import Robot
  • Author(s): David Prévot, Fabien Potencier, David Prévot
  • Date: 2015-05-31 09:36:15 UTC
  • mfrom: (1.3.2)
  • Revision ID: package-import@ubuntu.com-20150531093615-k8ji3z2kvy02x7la
Tags: 2.7.0+dfsg-1
[ Fabien Potencier ]
* updated VERSION for 2.7.0

[ David Prévot ]
* Adapt minimal version in CI for unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
        $class = false;
89
89
        $namespace = false;
90
90
        $tokens = token_get_all(file_get_contents($file));
91
 
        for ($i = 0, $count = count($tokens); $i < $count; $i++) {
 
91
        for ($i = 0, $count = count($tokens); $i < $count; ++$i) {
92
92
            $token = $tokens[$i];
93
93
 
94
94
            if (!is_array($token)) {