Exemplo n.º 1
0
 /**
  * Writes class loading information if not yet present
  *
  * @return Bootstrap
  * @internal This is not a public API method, do not use in own extensions
  */
 public function ensureClassLoadingInformationExists()
 {
     if (!self::$usesComposerClassLoading && !ClassLoadingInformation::isClassLoadingInformationAvailable()) {
         ClassLoadingInformation::dumpClassLoadingInformation();
         ClassLoadingInformation::registerClassLoadingInformation();
     }
     return $this;
 }
Exemplo n.º 2
0
 /**
  * Writes class loading information if not yet present
  *
  * @return Bootstrap
  * @internal This is not a public API method, do not use in own extensions
  * @deprecated since TYPO3 v8, will be removed in TYPO3 v9. Use the Install Tool to dump autoload information.
  */
 public function ensureClassLoadingInformationExists()
 {
     if (!self::$usesComposerClassLoading && !ClassLoadingInformation::isClassLoadingInformationAvailable()) {
         GeneralUtility::logDeprecatedFunction();
         ClassLoadingInformation::dumpClassLoadingInformation();
         ClassLoadingInformation::registerClassLoadingInformation();
     }
     return $this;
 }