Пример #1
0
 /**
  * {@inheritdoc}
  */
 protected function rebuildAll()
 {
     // We know the rebuild causes notices, so don't exit on failure.
     $die_on_fail = $this->dieOnFail;
     $this->dieOnFail = FALSE;
     parent::rebuildAll();
     // Remove the notices we get due to the menu link rebuild prior to running
     // the system updates for the schema change.
     foreach ($this->assertions as $key => $assertion) {
         if ($assertion['message_group'] == 'Notice' && basename($assertion['file']) == 'MenuTreeStorage.php' && strpos($assertion['message'], 'unserialize(): Error at offset 0') !== FALSE) {
             unset($this->assertions[$key]);
             $this->deleteAssert($assertion['message_id']);
             $this->results['#exception']--;
         }
     }
     $this->dieOnFail = $die_on_fail;
 }