<?php
/**
 * AbstractController.class.php
 * $author$
 */

namespace Apicp\Controller\Export;


abstract class AbstractController extends \Apicp\Controller\AbstractController
{

    public function before_action($action = '')
    {
        if (!parent::before_action($action)) {
            return false;
        }
        return true;
    }

}