소스 검색

Fix hook output

Peter Ragheb 2 년 전
부모
커밋
72eb6b2be9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/Commands/GenerateDocumentation.php

+ 1 - 1
src/Commands/GenerateDocumentation.php

@@ -89,7 +89,7 @@ class GenerateDocumentation extends Command
     protected function runBootstrapHook()
     {
         if (is_callable(Globals::$__bootstrap)) {
-            c::info("Running `beforeGenerating()` hook...");
+            c::info("Running `bootstrap()` hook...");
             call_user_func_array(Globals::$__bootstrap, [$this]);
         }
     }