mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-11 06:47:31 +01:00
20 lines
274 B
PHP
20 lines
274 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Attribut;
|
||
|
|
||
|
/**
|
||
|
* @author kevinfrantz
|
||
|
*/
|
||
|
interface ClassAttributInterface
|
||
|
{
|
||
|
/**
|
||
|
* @param string $class
|
||
|
*/
|
||
|
public function setClass(string $class): void;
|
||
|
|
||
|
/**
|
||
|
* @return string
|
||
|
*/
|
||
|
public function getClass(): string;
|
||
|
}
|