mirror of
https://github.com/flarum/core.git
synced 2025-10-14 16:34:26 +02:00
Restructure Flarum\Api namespace
This commit is contained in:
26
src/Api/Controller/AbstractShowController.php
Normal file
26
src/Api/Controller/AbstractShowController.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of Flarum.
|
||||
*
|
||||
* (c) Toby Zerner <toby.zerner@gmail.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Flarum\Api\Controller;
|
||||
|
||||
use Tobscure\JsonApi\Resource;
|
||||
use Tobscure\JsonApi\SerializerInterface;
|
||||
|
||||
abstract class AbstractShowController extends AbstractSerializeController
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
protected function createElement($data, SerializerInterface $serializer)
|
||||
{
|
||||
return new Resource($data, $serializer);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user