InfluxOW/TicTacToe

View on GitHub
src/Enums/PlayerType.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace App\Enums;

enum PlayerType
{
    case HUMAN;
    case AI;
}