PokemonTCG/pokemon-tcg-sdk-php

View on GitHub
src/Resources/Interfaces/ResourceInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Pokemon\Resources\Interfaces;

/**
 * Interface ResourceInterface
 *
 * @package Pokemon\Resources\Interfaces
 */
interface ResourceInterface
{

    /**
     * @return array
     */
    public function all();

}