Skip to content
Snippets Groups Projects
Commit 632d92bb authored by Chris Müller's avatar Chris Müller Committed by Georg Ringer
Browse files

[DOCS] Fix broken examples for console command DI

In the dependency injection examples for defining a console
command a colon is missing after the class name.

Resolves: #91068
Related: #89139
Releases: master
Change-Id: Ieea67cfb3f906037a4fad7da49d3d91613a12855
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/64202


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarJonas Eberle <flightvision@googlemail.com>
Tested-by: default avatarBjörn Jacob <bjoern.jacob@tritum.de>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Tested-by: default avatarJosef Glatz <josefglatz@gmail.com>
Tested-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: default avatarJonas Eberle <flightvision@googlemail.com>
Reviewed-by: default avatarBjörn Jacob <bjoern.jacob@tritum.de>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarJosef Glatz <josefglatz@gmail.com>
Reviewed-by: default avatarGeorg Ringer <georg.ringer@gmail.com>
parent bf03cdd9
Branches
Tags
No related merge requests found
......@@ -51,7 +51,7 @@ to exclude the command from the TYPO3 scheduler.
autoconfigure: true
public: false
MyVendor\MyExt\Commands\FooCommand
MyVendor\MyExt\Commands\FooCommand:
tags:
- name: 'console.command'
command: 'my:command'
......@@ -62,7 +62,7 @@ The optional tag attribute :yaml:`alias` should be set to true for alias command
.. code-block:: yaml
MyVendor\MyExt\Commands\BarCommand
MyVendor\MyExt\Commands\BarCommand:
tags:
- name: 'console.command'
command: 'my:bar'
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment