Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

Codeblock
languagephp
titleBeispiel
linenumberstrue
namespace brandbox\component\example {

  use brandbox\component\http;

  class engine extends plugin\lib\engineAbstract {

    /**
     * @param int $max
     * @return array
     */
    public function index($max) {
      return $this
        ->staticAppController(ui\lib\request\index::class)
        ->request($max)
      ;
    }

    /**
     * @param int $max
     * @return http\respondAbstract
     */
    public function save($max) {
      return $this
        ->staticAppController(ui\lib\execute\save::class)
        ->execute($max)
      ;
    }
  }
}

...