for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SchoppAx\Sleeper\Api;
class Players extends Api
{
/**
* Fetch all players (nfl only)
*
* @return array|[]
array|[]
2
* @throws ClientException if status code <> 200
* @throws Exception if response body equals null
*/
public function all(): array
return $this->get('players/nfl');
return $this->get('players/nfl')
SchoppAx\Sleeper\Api\json
array
}