From c4ab00546292ca4fc83fdab7730b0dd5aeaccca4 Mon Sep 17 00:00:00 2001 From: Alexander Date: Thu, 30 Oct 2014 06:43:34 +0200 Subject: [PATCH] Added list of methods for autocomplete Added list of available methods to the PHPDoc section of `Flight` class. Inspired by suggestion: http://stackoverflow.com/a/26628288/1363799 --- flight/Flight.php | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/flight/Flight.php b/flight/Flight.php index 951ba64..6281eea 100644 --- a/flight/Flight.php +++ b/flight/Flight.php @@ -8,6 +8,28 @@ /** * The Flight class is a static representation of the framework. + * + * @method static void map($name, $callback) Creates a custom framework method. + * @method static void register($name, $class, array $params = array(), $callback = null) Registers a class to a framework method. + * @method static void before($name, $callback) Adds a filter before a framework method. + * @method static void after($name, $callback) Adds a filter after a framework method. + * @method static void path($path) Adds a path for autoloading classes. + * @method static void get($key) Gets a variable. + * @method static void set($key, $value) Sets a variable. + * @method static void has($key) Checks if a variable is set. + * @method static void clear($key = null) Clears a variable. + * @method static void start() Starts the framework. + * @method static void stop() Stops the framework and sends a response. + * @method static void halt($code = 200, $message = '') Stop the framework with an optional status code and message. + * @method static void route($pattern, $callback) Maps a URL pattern to a callback. + * @method static void redirect($url, $code = 303) Redirects to another URL. + * @method static void render($file, array $data = null, $key = null) Renders a template file. + * @method static void error($exception) Sends an HTTP 500 response. + * @method static void notFound() Sends an HTTP 404 response. + * @method static void etag($id, $type = 'strong') Performs ETag HTTP caching. + * @method static void lastModified($time) Performs last modified HTTP caching. + * @method static void json($data, $code = 200, $encode = true) Sends a JSON response. + * @method static void jsonp($data, $param = 'jsonp', $code = 200, $encode = true) Sends a JSONP response. */ class Flight { /**