16 lines
227 B
PHP
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';
|
|
}
|
|
}
|