Files
armel.net/src/Security/Csp/Directives/StyleSrc.php
Armel van Ravels bb1d280731
All checks were successful
PHP Composer / build (push) Successful in 10m28s
Initial commit
2024-08-30 22:13:03 +02:00

16 lines
227 B
PHP

<?php
declare(strict_types=1);
namespace App\Security\Csp\Directives;
use App\Security\Csp\Directive;
final class StyleSrc extends Directive
{
public function getName(): string
{
return 'style-src';
}
}