393. /**
394. * Protected add to class map
395. *
396. * 5.7.4.4[added]
397. */
398. protected static function addToClassMap($content)
399. {
400. if( ! is_file(self::$path) || (! empty($content) && ! strstr(file_get_contents(self::$path), $content)) )
401. {
402. file_put_contents(self::$path, $content, FILE_APPEND);
403. }
404. }
405.
406. /**
407. * If the use of alias is obvious, it will activate this operation.
408. */
409. protected static function aliases()
410. {
411. if( $autoloaderAliases = Config::get('Autoloader')['aliases'] ?? NULL ) foreach( $autoloaderAliases as $alias => $origin )
412. {