PHP code example of project-nos / spryker-twig-code-sniffer
1. Go to this page and download the library: Download project-nos/spryker-twig-code-sniffer library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
project-nos / spryker-twig-code-sniffer example snippets
$config[KernelConstants::CORE_NAMESPACES] = [
// add 'Nos' as a core namespace
'Nos',
];
use Nos\Yves\TwigCodeSniffer\Plugin\Console\TwigCodeSnifferConsole;
protected function getConsoleCommands(Container $container): array
{
$commands = [
// other registered console plugins ...
new TwigCodeSnifferConsole(),
];