mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Implemented ClassAttribut
This commit is contained in:
19
application/symfony/src/Attribut/ClassAttributInterface.php
Normal file
19
application/symfony/src/Attribut/ClassAttributInterface.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Attribut;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface ClassAttributInterface
|
||||
{
|
||||
/**
|
||||
* @param string $class
|
||||
*/
|
||||
public function setClass(string $class): void;
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getClass(): string;
|
||||
}
|
Reference in New Issue
Block a user