Lines Matching full:files
33 … $options->registerCommand('addTest', 'Add the testing framework files and a test. (_test/)');
36 $options->registerCommand('addConf', 'Add the configuration files. (conf/)');
37 $options->registerCommand('addLang', 'Add the language files. (lang/)');
53 …$options->registerCommand('deletedFiles', 'Create the list of deleted files based on the git histo…
54 $options->registerCommand('rmObsolete', 'Delete obsolete files.');
72 … $options->registerCommand('cleanSvg', 'Clean a existing SVG files to reduce their file size.');
73 …$options->registerArgument('files...', 'The files to clean (will be overwritten)', true, 'cleanSvg…
78 …'Clean language files from unused language strings. Detecting which strings are truly in use may '…
92 … $options->registerArgument('files...', 'The test files to run. Defaults to all.', false, 'test');
95 …$options->registerArgument('files...', 'The files to check. Defaults to the whole extension.', fal…
98 …$options->registerArgument('files...', 'The files to check. Defaults to the whole extension.', fal…
215 * Create the given files with their given content
217 * Ignores all files that already exist
219 * @param array $files A File array as created by Skeletor::getFiles()
221 protected function createFiles($files) argument
223 foreach ($files as $path => $content) {
361 * Generate a list of deleted files from git
379 $this->info('No deleted files found');
383 $content = "# This is a list of files that were present in previous releases\n" .
387 file_put_contents('deleted.files', $content);
388 $this->success('written deleted.files');
393 * Remove files that shouldn't be here anymore
421 * @param string[] $files
426 protected function cmdCleanSVG($files, $keep = false) argument
432 foreach ($files as $file) {
445 $files = glob('./lang/*/lang.php');
446 foreach ($files as $file) {
450 $files = glob('./lang/*/settings.php');
451 foreach ($files as $file) {
462 * @param string[] $args Additional arguments to pass to phpunit (files)
506 protected function cmdCheck($files = []) argument
517 if ($files) {
518 $args = array_merge($args, $files);
534 protected function cmdFix($files = []) argument
547 if ($files) {
548 $args = array_merge($args, $files);
568 if ($files) {
569 $args = array_merge($args, $files);