1

ZFTool 2 を使用して、プロジェクトでモジュールとコントローラを作成しています。これを使用してアクションを作成しようとすると、エラーが発生します。

ドキュメントでは、次のように述べています。

Action creation:
  zftool create action <name> <controllerName> <module> [<path>]    create an action in a controller                                                          

  <name>              The name of the action to be created                                                                                                                          
  <controllerName>    The name of the controller in which the action should be created                                                                                              
  <module>            The module containing the controller                                                                                                                          
  <path>              The root path of a ZF2 application where to create the action          

そこで、ターミナルに次のように入力しました。

zftool create action test Index Mymodule my-project-root

次の (あまり役に立たない) エラー メッセージが返されます。

Reason for failure: Invalid arguments or no arguments provided

私もこのように試しましたが、同じ結果でした:

zftool create action testAction IndexController Mymodule my-project-root

ここで何か間違ったことをしていますか?アクションが作成されないのはなぜですか? 無効な引数は何ですか?

編集
コメントで示唆されているように、パスに問題がないことを確認するために、プロジェクトルートに変更した後にアクションを作成しようとしました。次のエラー メッセージが表示されました。

Fatal error: Uncaught exception 'Zend\ModuleManager\Exception\RuntimeException' with message 'Module (ZFTool) could not be initialized.' in /Applications/AMPPS/www/myProject/vendor/zendframework/zendframework/library/Zend/ModuleManager/ModuleManager.php:189

4

1 に答える 1