mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-28 17:01:16 +00:00
11 lines
157 B
PHP
11 lines
157 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\IGDB\Models;
|
|
|
|
class Company extends BaseModel
|
|
{
|
|
protected const string ENDPOINT = 'companies';
|
|
}
|