mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 09:01:42 -04:00
21 lines
385 B
PHP
21 lines
385 B
PHP
<?php
|
|
|
|
namespace Modules\StudioPlus\Services;
|
|
|
|
use Modules\StudioPlus\Repositories\ContentVariantsRepository;
|
|
|
|
class ContentVariantsService
|
|
{
|
|
protected $repository;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->repository = new ContentVariantsRepository();
|
|
}
|
|
|
|
public function getAll()
|
|
{
|
|
return $this->repository->getAll();
|
|
}
|
|
}
|