mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-01-10 22:37:28 +01:00
25 lines
374 B
PHP
25 lines
374 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;
|
|
|
|
/**
|
|
* @return bool True if class is defined
|
|
*/
|
|
public function hasClass(): bool;
|
|
}
|