More PHPDoc

v2-beta
Bruno O. Notario 3 years ago
parent 57c87c18c4
commit fcd8211bbd
Signed by: oliveira131
GPG Key ID: 76CAD698D3EA8F58
  1. 8
      system/engine/interfaces/action.php
  2. 106
      system/system.php

@ -8,6 +8,12 @@
namespace Phacil\Framework\Interfaces; namespace Phacil\Framework\Interfaces;
/**
* Action interface.
*
* @since 2.0.0
* @package Phacil\Framework\Interfaces
*/
interface Action { interface Action {
/** /**
@ -56,6 +62,7 @@ interface Action {
* Return the method to be loaded * Return the method to be loaded
* *
* @return string * @return string
* @since 1.0.0
*/ */
public function getMethod(); public function getMethod();
@ -63,6 +70,7 @@ interface Action {
* Return the args * Return the args
* *
* @return array * @return array
* @since 1.0.0
*/ */
public function getArgs(); public function getArgs();
} }

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save