mirror of
https://github.com/ysoftdevs/Theatrical-Players-Refactoring-Kata.git
synced 2026-05-05 15:34:36 +02:00
15 lines
244 B
PHP
15 lines
244 B
PHP
<?php
|
|
|
|
namespace Theatrical;
|
|
|
|
class Performance
|
|
{
|
|
public string $play_id;
|
|
public int $audience;
|
|
|
|
public function __construct($play_id, $audience)
|
|
{
|
|
$this->play_id = $play_id;
|
|
$this->audience = $audience;
|
|
}
|
|
} |