소스 검색

Make analyze the default command

tags/v0.7.0
itismadness 6 년 전
부모
커밋
1456cd784b
2개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. +1
    -1
      composer.json
  2. +5
    -1
      src/LogcheckerConsole.php

+ 1
- 1
composer.json 파일 보기

@@ -1,7 +1,7 @@
{
"name": "orpheusnet/logchecker",
"description": "Logchecker for validating logs generated from supported ripping programs (like EAC and XLD)",
"version": "0.5.0",
"version": "0.7.0",
"license": "Unlicense",
"type": "library",
"authors": [


+ 5
- 1
src/LogcheckerConsole.php 파일 보기

@@ -13,8 +13,12 @@ class LogcheckerConsole extends Application {

parent::__construct('Logchecker by Orpheus', $version);

$analyze_command = new Command\AnalyzeCommand();

$this->addCommands([
new Command\AnalyzeCommand()
$analyze_command
]);

$this->setDefaultCommand($analyze_command->getName());
}
}

불러오는 중...
취소
저장