Все объекты создаются в пространстве имён report
.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Aramuz | |
``` | |
php bin/phpunit | |
``` | |
### БД | |
``` | |
# Пересоздание схемы БД локально | |
# снёс базу | |
bin/console aramuz:vitess:drop-schema --force | |
bin/console aramuz:vitess:init-schema |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ChildComponent v-model="pageTitle" /> | |
<!-- будет сокращённой версия для: --> | |
<ChildComponent | |
:modelValue="pageTitle" | |
@update:modelValue="pageTitle = $event" | |
/> | |
<ChildComponent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# show all plugins | |
rabbitmq-plugins list | |
# enable plugin | |
rabbitmq-plugins enable <plugin-name> | |
# enadisableble plugin | |
rabbitmq-plugins disable <plugin-name> |