14 lines
202 B
PHP
14 lines
202 B
PHP
<?php
|
|
|
|
namespace App\Presenters;
|
|
|
|
use CultureGr\Presenter\Presenter;
|
|
|
|
class StudyPresenter extends Presenter
|
|
{
|
|
public function toArray(): array
|
|
{
|
|
return $this->model->toArray();
|
|
}
|
|
}
|