PHP Classes

File: src/Module.php

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Jaxon for Zend Framework   src/Module.php   Download  
File: src/Module.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Jaxon for Zend Framework
Zend plugin to call PHP classes from with AJAX
Author: By
Last change: Adapted to the new class hierarchy is jaxon-core.
Date: 2 years ago
Size: 372 bytes
 

Contents

Class file image Download
<?php

namespace Jaxon\Zend;

use
Zend\EventManager\EventInterface;
use
Zend\ModuleManager\Feature\BootstrapListenerInterface;
use
Zend\ModuleManager\Feature\ConfigProviderInterface;

class
Module implements ConfigProviderInterface
{
   
/**
     * Get the plugin config
     *
     * @return array
     */
   
public function getConfig()
    {
        return [];
    }
}