allanmcarvalho/cakephp-datatables

View on GitHub
src/Controller/AppController.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Copyright (c) Allan Carvalho 2020.
 * Under Mit License
 * php version 7.2
 *
 * link     https://github.com/allanmcarvalho/cakephp-data-renderer
 * author   Allan Carvalho <allan.m.carvalho@outlook.com>
 */
declare(strict_types = 1);

namespace DataTables\Controller;

use App\Controller\AppController as BaseController;

/**
 * Class AppController
 *
 * @author   Allan Carvalho <allan.m.carvalho@outlook.com>
 * @license  MIT License https://github.com/allanmcarvalho/cakephp-datatables/blob/master/LICENSE
 * @link     https://github.com/allanmcarvalho/cakephp-datatables
 */
class AppController extends BaseController {

    /**
     * @return void
     */
    public function initialize(): void {
        parent::initialize(); // TODO: Change the autogenerated stub
    }

}