TYPO3 CMS  TYPO3_6-2
UnitTestPackageManager.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Core\Package;
3 
19 
27 
34  public function initialize(\TYPO3\Flow\Core\Bootstrap $bootstrap) {
35  $this->bootstrap = $bootstrap;
36 
37  $this->scanAvailablePackages();
38  $this->activePackages = $this->packages;
39 
40  $cacheIdentifier = str_replace('.', '', uniqid('', TRUE));
41  $this->classLoader->setCacheIdentifier($cacheIdentifier)->setPackages($this->activePackages);
42  }
43 
50  protected function sortAndSavePackageStates() {
51  // Deliberately empty!
52  }
53 
54 }
initialize(\TYPO3\Flow\Core\Bootstrap $bootstrap)