Optimized Tests and attributes

This commit is contained in:
Kevin Frantz
2019-01-27 18:38:21 +01:00
parent 0593a8f1c3
commit 17a6ee1dc6
7 changed files with 45 additions and 6 deletions

View File

@@ -7,7 +7,13 @@ namespace App\Attribut;
*/
interface LayerAttributInterface
{
/**
* @param string $layer
*/
public function setLayer(string $layer): void;
/**
* @return string
*/
public function getLayer(): string;
}