mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2026-02-17 07:21:31 +00:00
11 lines
126 B
PHP
11 lines
126 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace GildedRose;
|
|
|
|
interface GildedRoseItem
|
|
{
|
|
public function ageByOneDay(): void;
|
|
}
|