Skip to content

Instantly share code, notes, and snippets.

@ROBJkE
ROBJkE / shopware-scheduled-task.conf
Last active June 3, 2023 11:38
sw6: supervisor worker conf
[program:scheduled-task]
command=php -d memory_limit=256M /var/shopware/bin/console scheduled-task:run --time-limit=120
numprocs=2
startsecs=0
autostart=true
autorestart=true
process_name=%(program_name)s_%(process_num)02d
@ROBJkE
ROBJkE / NavigationRouteDecorator.php
Created February 19, 2021 14:54
NavigationRoute Decorator
<?php
namespace MyPlugin\Descorators;
use Shopware\Core\Content\Category\SalesChannel\AbstractNavigationRoute;
use Shopware\Core\Content\Category\SalesChannel\NavigationRoute;
use Shopware\Core\Content\Category\SalesChannel\NavigationRouteResponse;
use Doctrine\DBAL\Connection;
use OpenApi\Annotations as OA;