文件名称:command:命令查询职责隔离的命令部分
文件大小:31KB
文件格式:ZIP
更新时间:2024-06-06 07:40:55
PHP
命令 该库提供了一些有用的工具,以创建一个简单的命令系统。 这个怎么运作 // configuration $ handler = new AddItemToChartCommandHandler (); $ locator = new CommandHandlerLocator (); $ locator -> register ( 'AddItemToChartCommand' , $ handler ); $ bus = new SequentialCommandBus ( $ locator ); // usage $ command = new AddItemToChartCommand ( $ item , $ chart ); $ bus -> dispatch ( $ command ); // internally, the bus will call the cor
【文件预览】:
command-master
----composer.json(750B)
----.travis.yml(553B)
----composer.lock(60KB)
----tests()
--------Handler()
--------Bus()
--------Utils()
----.php_cs(497B)
----LICENSE(1KB)
----CONTRIBUTING.md(8KB)
----src()
--------Handler()
--------CommandInterface.php(990B)
--------Bus()
--------Exception()
--------Utils()
----.idea()
--------php.xml(151B)
--------composerJson.xml(271B)
--------codeStyleSettings.xml(3KB)
--------scopes()
--------vcs.xml(180B)
--------.name(7B)
--------symfony2.xml(62B)
--------modules.xml(266B)
--------command.iml(900B)
--------encodings.xml(317B)
--------inspectionProfiles()
----.gitignore(251B)
----phpunit.xml.dist(954B)
----README.md(2KB)
----.editorconfig(130B)