infinito/application/symfony/src/Attribut/ClassAttributInterface.php

25 lines
374 B
PHP
Raw Normal View History

2019-02-03 12:34:29 +01:00
<?php
namespace App\Attribut;
/**
* @author kevinfrantz
*/
interface ClassAttributInterface
{
/**
* @param string $class
*/
public function setClass(string $class): void;
/**
* @return string
*/
public function getClass(): string;
2019-02-03 13:13:11 +01:00
/**
* @return bool True if class is defined
*/
public function hasClass(): bool;
2019-02-03 12:34:29 +01:00
}