| 1 |
<?php |
| 2 |
|
| 3 |
namespace Pods\CLI\Commands; |
| 4 |
|
| 5 |
/** |
| 6 |
* Class Group |
| 7 |
* |
| 8 |
* @since 2.8.0 |
| 9 |
*/ |
| 10 |
class Group extends Base { |
| 11 |
|
| 12 |
/** |
| 13 |
* @var string |
| 14 |
*/ |
| 15 |
protected $command = 'group'; |
| 16 |
|
| 17 |
/** |
| 18 |
* Setup endpoint object. |
| 19 |
* |
| 20 |
* @since 2.8.0 |
| 21 |
*/ |
| 22 |
public function __construct() { |
| 23 |
$this->endpoint_archive = pods_container( 'pods.rest-v1.endpoints.groups' ); |
| 24 |
$this->endpoint_single = pods_container( 'pods.rest-v1.endpoints.group' ); |
| 25 |
$this->endpoint_single_slug = pods_container( 'pods.rest-v1.endpoints.group-slug' ); |
| 26 |
} |
| 27 |
} |
| 28 |
|