mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-04-27 06:35:39 +02:00
27 lines
416 B
PHP
27 lines
416 B
PHP
<?php
|
|
|
|
namespace App\Attribut;
|
|
|
|
/**
|
|
* @author kevinfrantz
|
|
*/
|
|
interface ClassAttributInterface
|
|
{
|
|
const CLASS_ATTRIBUT_NAME = 'class';
|
|
|
|
/**
|
|
* @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;
|
|
}
|