HaaseIT/HCSF

View on GitHub
src/Controller/Api/Shop/Item/Index.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace HaaseIT\HCSF\Controller\Api\Shop\Item;


use HaaseIT\HCSF\CorePage;

class Index extends Base
{
    public function preparePage()
    {
        $headers = [
            'Content-type' => 'application/json',
        ];

        $this->P = new CorePage($this->serviceManager, $headers);
        $this->P->cb_pagetype = 'itemoverviewjson';
    }
}