===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
php-doctrine-bundle-2.2.1/Tests/DataCollector/DoctrineDataCollectorTest.php-98-        $this->assertCount(1, $groupedQueries['default']);
php-doctrine-bundle-2.2.1/Tests/DataCollector/DoctrineDataCollectorTest.php:99:        $this->assertSame('SELECT * FROM foo WHERE bar = :bar', $groupedQueries['default'][0]['sql']);
php-doctrine-bundle-2.2.1/Tests/DataCollector/DoctrineDataCollectorTest.php-100-        $this->assertSame(2, $groupedQueries['default'][0]['count']);
##############################################
php-doctrine-bundle-2.2.1/UPGRADE-1.12.md-28-
php-doctrine-bundle-2.2.1/UPGRADE-1.12.md:29:1. Change your test cases with new behaviour in mind. In a lot of cases this just means to replace `ObjectManager::refresh($entity)` with `$entity = ObjectManager::find($entity->getId())`. This is the recommended solution.
php-doctrine-bundle-2.2.1/UPGRADE-1.12.md-30-2. Write a compiler pass which restores old behaviour, e.g. by adding the following to your `Kernel` class:
##############################################
php-doctrine-bundle-2.2.1/UPGRADE-2.0.md-74-
php-doctrine-bundle-2.2.1/UPGRADE-2.0.md:75:1. Change your test cases with new behaviour in mind. In a lot of cases this just means to replace `ObjectManager::refresh($entity)` with `$entity = ObjectManager::find($entity->getId())`. This is the recommended solution.
php-doctrine-bundle-2.2.1/UPGRADE-2.0.md-76-2. Write a compiler pass which restores old behaviour, e.g. by adding the following to your `Kernel` class: