diff --git a/LICENSE b/LICENSE old mode 100644 new mode 100755 diff --git a/README.md b/README.md old mode 100644 new mode 100755 index 408934f..5559097 --- a/README.md +++ b/README.md @@ -3,80 +3,57 @@ Laravel Localization Helpers [![Latest Stable Version](https://poser.pugx.org/potsky/laravel-localization-helpers/v/stable.svg)](https://packagist.org/packages/potsky/laravel-localization-helpers) [![Latest Unstable Version](https://poser.pugx.org/potsky/laravel-localization-helpers/v/unstable.svg)](https://packagist.org/packages/potsky/laravel-localization-helpers) -[![Build Status](https://travis-ci.org/potsky/laravel-localization-helpers.svg)](https://travis-ci.org/potsky/laravel-localization-helpers) -[![Coverage Status](https://coveralls.io/repos/potsky/laravel-localization-helpers/badge.svg?branch=master&service=github)](https://coveralls.io/github/potsky/laravel-localization-helpers?branch=master) [![Total Downloads](https://poser.pugx.org/potsky/laravel-localization-helpers/downloads.svg)](https://packagist.org/packages/potsky/laravel-localization-helpers) -LLH is a set of tools to help you manage translations in your Laravel project. Run the `localization:missing` artisan command to automatically generate lang files according to your PHP sources. -## Table of contents -1. [Installation](#1-installation) -1. [Configuration](#2-configuration) -1. [Usage](#3-usage) -1. [Support](#4-support) -1. [Contribute](#5-contribute) -1. [Change Log](#6-change-log) +LLH is a set of tools to help you manage translations in your Laravel project. -## 1. Installation +## Installation -- Add the following line in the `require-dev` array of the `composer.json` file : - ``` - "potsky/laravel-localization-helpers" : "~1" - ``` +1 - Add the following line in the `require-dev` array of the `composer.json` file : +`"potsky/laravel-localization-helpers" : "~1.1"` -- Update your installation : `composer update` -- Add the following line in the `providers` array of the `app/config/app.php` configuration file : - ``` - 'Potsky\LaravelLocalizationHelpers\LaravelLocalizationHelpersServiceProvider' - ``` +2 - Update your installation : `composer update` -- Now execute `php artisan list` and you should view the new *localization* commands: - ``` - ... - localization - localization:clear Remove lang backup files - localization:find Display all files where the argument is used as a lemma - localization:missing Parse all translations in app directory and build all lang files - ... - ``` +3 - Add one of the following lines in the `providers` array of the `app/config/app.php` configuration file : -You can add the facade in the Aliases if you need to manage translations in your code : +Laravel 4: `'Potsky\LaravelLocalizationHelpers\LaravelLocalizationHelpersServiceProvider',` + +Laravel 5: `'Potsky\LaravelLocalizationHelpers\LaravelLocalizationHelpersServiceProviderLaravel5',` + + +Now execute `php artisan list` and you should view the new *localization* commands: ``` -'LocalizationHelpers' => 'Potsky\LaravelLocalizationHelpers\Facade\LocalizationHelpers' +... +key +key:generate Set the application key +localization +localization:find Display all files where the argument is used as a lemma +localization:missing Parse all translations in app directory and build all lang files +migrate +migrate:install Create the migration repository +... ``` -## 2. Configuration +## Configuration To configure your fresh installed package, please create a configuration file by executing : -- Laravel 4: `php artisan config:publish potsky/laravel-localization-helpers` -- Laravel 5: `php artisan vendor:publish` +For Laravel 4: `php artisan config:publish potsky/laravel-localization-helpers` -Then you can modify the configuration in file : +For Laravel 5: `php artisan vendor:publish` -- Laravel 4: `app/config/packages/potsky/laravel-localization-helpers/config.php` -- Laravel 5: `app/config/laravel-localization-helpers.php` +Then you can modify the configuration in file `app/config/packages/potsky/laravel-localization-helpers/config.php` (Laravel 4) or `app/config/laravel-localization-helpers.php` (Laravel 5). Add new folders to search for, add your own lang methods or functions, ... -### Backup files - -You should not include backup lang files in GIT or other versioning systems. - -In your `laravel` folder, add this in `.gitignore` file : - -``` -# Do not include backup lang files -app/lang/*/[a-zA-Z]*.[0-9_]*.php -``` - -## 3. Usage +## Usage -### 3.1 Command `localization:missing` +### Command `localization:missing` -This command parses all your code and generates according lang files in all `lang/XXX/` directories. +This command parses all your code and generate according lang files in all `lang/XXX/` directories. Use `php artisan help localization:missing` for more informations about options. @@ -121,11 +98,10 @@ php artisan localization:missing -d ##### Generate all lang files and set new lemma values 3 commands below produce the same output: - ``` php artisan localization:missing php artisan localization:missing -l -php artisan localization:missing -l "TODO: %LEMMA" +php artisan localization:missing -l "%LEMMA" ``` You can customize the default generated values for unknown lemmas. @@ -136,13 +112,13 @@ The following command let new values empty: php artisan localization:missing -l "" ``` -The following command prefixes all lemma values with "Please translate this : " +The following command prefixes all lemmas values with "Please translate this : " ``` php artisan localization:missing -l "Please translate this : %LEMMA" ``` -The following command set all lemma values to "Please translate this !" +The following command prefixes all lemmas values with "Please translate this !" ``` php artisan localization:missing -l 'Please translate this !' @@ -179,13 +155,7 @@ You can edit the editor path in your configuration file. By default, editor is * 'editor_command_line' => '/Applications/Sublime\\ Text.app/Contents/SharedSupport/bin/subl' ``` -For *PHPStorm* on *Mac OS X*: - -``` -'editor_command_line' => '/usr/local/bin/phpstorm' -``` - -### 3.2 Command `localization:find` +### Command `localization:find` This command will search in all your code for the argument as a lemma. @@ -220,63 +190,15 @@ php artisan localization:find -s -r "/.*me$/" > PCRE functions are used -### 3.3 Command `localization:clear` - -This command will remove all backup lang files. - -Use `php artisan help localization:clear` for more informations about options. - -#### *Examples* - -##### Remove all backups - -``` -php artisan localization:clear -``` - -##### Remove backups older than 7 days - -``` -php artisan localization:clear -d 7 -``` - -## 4. Support - -Use the [github issue tool](https://github.com/potsky/laravel-localization-helpers/issues) to open an issue or ask for something. - -## 5. Contribute - -1. Fork it -2. Create your feature branch (`git checkout -b my-new-feature`) -3. Commit your changes (`git commit -am 'Added some feature'`) -4. Push to the branch (`git push origin my-new-feature`) -5. Create new Pull Request - -Tests are in `tests`. To run the tests: `vendor/bin/phpunit`. - -Coverage cannot decrease next a merge. To track file coverage, run `vendor/bin/phpunit --coverage-html coverage` and open `coverage/index.html` to check uncovered lines of code. - -## 6. Change Log - -### v1.4 - -- new command `localization:clear` to remove backups -- new command `localization:translate` to translate a sentence with Bing Translator -- new options to specify output formatting -- new option to let the command translate sentences for you with Bing Translator -- new lemma are now marked with the `TODO:` prefix by default (*if you ran two times the missing artisan command without translating lemma next to the first run, your missing translation were lost in the lang file. Now by default, just search for TODO in your lang file!*) -- simplified service provider, no need to load distinct providers according to Laravel version +## Support -Internally : +Use the github issue system to open a issue and ask for something. -- totally refactored -- unit tests -- test coverage -- facade to let you use localization helpers in your code +## Change Log ### v1.3.2 -- fix incompatibility with Laravel 5.2 ([#16](https://github.com/potsky/laravel-localization-helpers/issues/16)) +- fix incompatibility with Laravel 5.2 [#16](https://github.com/potsky/laravel-localization-helpers/issues/16) ### v1.3.1 diff --git a/_ide_helper.php b/_ide_helper.php deleted file mode 100644 index f7dcb60..0000000 --- a/_ide_helper.php +++ /dev/null @@ -1,12635 +0,0 @@ -=', $count = 1, $boolean = 'and', $callback = null){ - return \Illuminate\Database\Eloquent\Builder::has($relation, $operator, $count, $boolean, $callback); - } - - /** - * Add a relationship count condition to the query. - * - * @param string $relation - * @param string $boolean - * @param \Closure|null $callback - * @return \Illuminate\Database\Eloquent\Builder|static - * @static - */ - public static function doesntHave($relation, $boolean = 'and', $callback = null){ - return \Illuminate\Database\Eloquent\Builder::doesntHave($relation, $boolean, $callback); - } - - /** - * Add a relationship count condition to the query with where clauses. - * - * @param string $relation - * @param \Closure $callback - * @param string $operator - * @param int $count - * @return \Illuminate\Database\Eloquent\Builder|static - * @static - */ - public static function whereHas($relation, $callback, $operator = '>=', $count = 1){ - return \Illuminate\Database\Eloquent\Builder::whereHas($relation, $callback, $operator, $count); - } - - /** - * Add a relationship count condition to the query with where clauses. - * - * @param string $relation - * @param \Closure|null $callback - * @return \Illuminate\Database\Eloquent\Builder|static - * @static - */ - public static function whereDoesntHave($relation, $callback = null){ - return \Illuminate\Database\Eloquent\Builder::whereDoesntHave($relation, $callback); - } - - /** - * Add a relationship count condition to the query with an "or". - * - * @param string $relation - * @param string $operator - * @param int $count - * @return \Illuminate\Database\Eloquent\Builder|static - * @static - */ - public static function orHas($relation, $operator = '>=', $count = 1){ - return \Illuminate\Database\Eloquent\Builder::orHas($relation, $operator, $count); - } - - /** - * Add a relationship count condition to the query with where clauses and an "or". - * - * @param string $relation - * @param \Closure $callback - * @param string $operator - * @param int $count - * @return \Illuminate\Database\Eloquent\Builder|static - * @static - */ - public static function orWhereHas($relation, $callback, $operator = '>=', $count = 1){ - return \Illuminate\Database\Eloquent\Builder::orWhereHas($relation, $callback, $operator, $count); - } - - /** - * Get the underlying query builder instance. - * - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function getQuery(){ - return \Illuminate\Database\Eloquent\Builder::getQuery(); - } - - /** - * Set the underlying query builder instance. - * - * @param \Illuminate\Database\Query\Builder $query - * @return void - * @static - */ - public static function setQuery($query){ - \Illuminate\Database\Eloquent\Builder::setQuery($query); - } - - /** - * Get the relationships being eagerly loaded. - * - * @return array - * @static - */ - public static function getEagerLoads(){ - return \Illuminate\Database\Eloquent\Builder::getEagerLoads(); - } - - /** - * Set the relationships being eagerly loaded. - * - * @param array $eagerLoad - * @return void - * @static - */ - public static function setEagerLoads($eagerLoad){ - \Illuminate\Database\Eloquent\Builder::setEagerLoads($eagerLoad); - } - - /** - * Get the model instance being queried. - * - * @return \Illuminate\Database\Eloquent\Model - * @static - */ - public static function getModel(){ - return \Illuminate\Database\Eloquent\Builder::getModel(); - } - - /** - * Set a model instance for the model being queried. - * - * @param \Illuminate\Database\Eloquent\Model $model - * @return $this - * @static - */ - public static function setModel($model){ - return \Illuminate\Database\Eloquent\Builder::setModel($model); - } - - /** - * Extend the builder with a given callback. - * - * @param string $name - * @param \Closure $callback - * @return void - * @static - */ - public static function macro($name, $callback){ - \Illuminate\Database\Eloquent\Builder::macro($name, $callback); - } - - /** - * Get the given macro by name. - * - * @param string $name - * @return \Closure - * @static - */ - public static function getMacro($name){ - return \Illuminate\Database\Eloquent\Builder::getMacro($name); - } - - /** - * Set the columns to be selected. - * - * @param array $columns - * @return $this - * @static - */ - public static function select($columns = array()){ - return \Illuminate\Database\Query\Builder::select($columns); - } - - /** - * Add a new "raw" select expression to the query. - * - * @param string $expression - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function selectRaw($expression){ - return \Illuminate\Database\Query\Builder::selectRaw($expression); - } - - /** - * Add a new select column to the query. - * - * @param mixed $column - * @return $this - * @static - */ - public static function addSelect($column){ - return \Illuminate\Database\Query\Builder::addSelect($column); - } - - /** - * Force the query to only return distinct results. - * - * @return $this - * @static - */ - public static function distinct(){ - return \Illuminate\Database\Query\Builder::distinct(); - } - - /** - * Set the table which the query is targeting. - * - * @param string $table - * @return $this - * @static - */ - public static function from($table){ - return \Illuminate\Database\Query\Builder::from($table); - } - - /** - * Add a join clause to the query. - * - * @param string $table - * @param string $one - * @param string $operator - * @param string $two - * @param string $type - * @param bool $where - * @return $this - * @static - */ - public static function join($table, $one, $operator = null, $two = null, $type = 'inner', $where = false){ - return \Illuminate\Database\Query\Builder::join($table, $one, $operator, $two, $type, $where); - } - - /** - * Add a "join where" clause to the query. - * - * @param string $table - * @param string $one - * @param string $operator - * @param string $two - * @param string $type - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function joinWhere($table, $one, $operator, $two, $type = 'inner'){ - return \Illuminate\Database\Query\Builder::joinWhere($table, $one, $operator, $two, $type); - } - - /** - * Add a left join to the query. - * - * @param string $table - * @param string $first - * @param string $operator - * @param string $second - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function leftJoin($table, $first, $operator = null, $second = null){ - return \Illuminate\Database\Query\Builder::leftJoin($table, $first, $operator, $second); - } - - /** - * Add a "join where" clause to the query. - * - * @param string $table - * @param string $one - * @param string $operator - * @param string $two - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function leftJoinWhere($table, $one, $operator, $two){ - return \Illuminate\Database\Query\Builder::leftJoinWhere($table, $one, $operator, $two); - } - - /** - * Add a right join to the query. - * - * @param string $table - * @param string $first - * @param string $operator - * @param string $second - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function rightJoin($table, $first, $operator = null, $second = null){ - return \Illuminate\Database\Query\Builder::rightJoin($table, $first, $operator, $second); - } - - /** - * Add a "right join where" clause to the query. - * - * @param string $table - * @param string $one - * @param string $operator - * @param string $two - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function rightJoinWhere($table, $one, $operator, $two){ - return \Illuminate\Database\Query\Builder::rightJoinWhere($table, $one, $operator, $two); - } - - /** - * Add a raw where clause to the query. - * - * @param string $sql - * @param array $bindings - * @param string $boolean - * @return $this - * @static - */ - public static function whereRaw($sql, $bindings = array(), $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereRaw($sql, $bindings, $boolean); - } - - /** - * Add a raw or where clause to the query. - * - * @param string $sql - * @param array $bindings - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function orWhereRaw($sql, $bindings = array()){ - return \Illuminate\Database\Query\Builder::orWhereRaw($sql, $bindings); - } - - /** - * Add a where between statement to the query. - * - * @param string $column - * @param array $values - * @param string $boolean - * @param bool $not - * @return $this - * @static - */ - public static function whereBetween($column, $values, $boolean = 'and', $not = false){ - return \Illuminate\Database\Query\Builder::whereBetween($column, $values, $boolean, $not); - } - - /** - * Add an or where between statement to the query. - * - * @param string $column - * @param array $values - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function orWhereBetween($column, $values){ - return \Illuminate\Database\Query\Builder::orWhereBetween($column, $values); - } - - /** - * Add a where not between statement to the query. - * - * @param string $column - * @param array $values - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function whereNotBetween($column, $values, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereNotBetween($column, $values, $boolean); - } - - /** - * Add an or where not between statement to the query. - * - * @param string $column - * @param array $values - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function orWhereNotBetween($column, $values){ - return \Illuminate\Database\Query\Builder::orWhereNotBetween($column, $values); - } - - /** - * Add a nested where statement to the query. - * - * @param \Closure $callback - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function whereNested($callback, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereNested($callback, $boolean); - } - - /** - * Add another query builder as a nested where to the query builder. - * - * @param \Illuminate\Database\Query\Builder|static $query - * @param string $boolean - * @return $this - * @static - */ - public static function addNestedWhereQuery($query, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::addNestedWhereQuery($query, $boolean); - } - - /** - * Add an exists clause to the query. - * - * @param \Closure $callback - * @param string $boolean - * @param bool $not - * @return $this - * @static - */ - public static function whereExists($callback, $boolean = 'and', $not = false){ - return \Illuminate\Database\Query\Builder::whereExists($callback, $boolean, $not); - } - - /** - * Add an or exists clause to the query. - * - * @param \Closure $callback - * @param bool $not - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function orWhereExists($callback, $not = false){ - return \Illuminate\Database\Query\Builder::orWhereExists($callback, $not); - } - - /** - * Add a where not exists clause to the query. - * - * @param \Closure $callback - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function whereNotExists($callback, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereNotExists($callback, $boolean); - } - - /** - * Add a where not exists clause to the query. - * - * @param \Closure $callback - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function orWhereNotExists($callback){ - return \Illuminate\Database\Query\Builder::orWhereNotExists($callback); - } - - /** - * Add a "where in" clause to the query. - * - * @param string $column - * @param mixed $values - * @param string $boolean - * @param bool $not - * @return $this - * @static - */ - public static function whereIn($column, $values, $boolean = 'and', $not = false){ - return \Illuminate\Database\Query\Builder::whereIn($column, $values, $boolean, $not); - } - - /** - * Add an "or where in" clause to the query. - * - * @param string $column - * @param mixed $values - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function orWhereIn($column, $values){ - return \Illuminate\Database\Query\Builder::orWhereIn($column, $values); - } - - /** - * Add a "where not in" clause to the query. - * - * @param string $column - * @param mixed $values - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function whereNotIn($column, $values, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereNotIn($column, $values, $boolean); - } - - /** - * Add an "or where not in" clause to the query. - * - * @param string $column - * @param mixed $values - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function orWhereNotIn($column, $values){ - return \Illuminate\Database\Query\Builder::orWhereNotIn($column, $values); - } - - /** - * Add a "where null" clause to the query. - * - * @param string $column - * @param string $boolean - * @param bool $not - * @return $this - * @static - */ - public static function whereNull($column, $boolean = 'and', $not = false){ - return \Illuminate\Database\Query\Builder::whereNull($column, $boolean, $not); - } - - /** - * Add an "or where null" clause to the query. - * - * @param string $column - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function orWhereNull($column){ - return \Illuminate\Database\Query\Builder::orWhereNull($column); - } - - /** - * Add a "where not null" clause to the query. - * - * @param string $column - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function whereNotNull($column, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereNotNull($column, $boolean); - } - - /** - * Add an "or where not null" clause to the query. - * - * @param string $column - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function orWhereNotNull($column){ - return \Illuminate\Database\Query\Builder::orWhereNotNull($column); - } - - /** - * Add a "where date" statement to the query. - * - * @param string $column - * @param string $operator - * @param int $value - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function whereDate($column, $operator, $value, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereDate($column, $operator, $value, $boolean); - } - - /** - * Add a "where day" statement to the query. - * - * @param string $column - * @param string $operator - * @param int $value - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function whereDay($column, $operator, $value, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereDay($column, $operator, $value, $boolean); - } - - /** - * Add a "where month" statement to the query. - * - * @param string $column - * @param string $operator - * @param int $value - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function whereMonth($column, $operator, $value, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereMonth($column, $operator, $value, $boolean); - } - - /** - * Add a "where year" statement to the query. - * - * @param string $column - * @param string $operator - * @param int $value - * @param string $boolean - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function whereYear($column, $operator, $value, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::whereYear($column, $operator, $value, $boolean); - } - - /** - * Handles dynamic "where" clauses to the query. - * - * @param string $method - * @param string $parameters - * @return $this - * @static - */ - public static function dynamicWhere($method, $parameters){ - return \Illuminate\Database\Query\Builder::dynamicWhere($method, $parameters); - } - - /** - * Add a "group by" clause to the query. - * - * @param array|string $column,... - * @return $this - * @static - */ - public static function groupBy(){ - return \Illuminate\Database\Query\Builder::groupBy(); - } - - /** - * Add a "having" clause to the query. - * - * @param string $column - * @param string $operator - * @param string $value - * @param string $boolean - * @return $this - * @static - */ - public static function having($column, $operator = null, $value = null, $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::having($column, $operator, $value, $boolean); - } - - /** - * Add a "or having" clause to the query. - * - * @param string $column - * @param string $operator - * @param string $value - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function orHaving($column, $operator = null, $value = null){ - return \Illuminate\Database\Query\Builder::orHaving($column, $operator, $value); - } - - /** - * Add a raw having clause to the query. - * - * @param string $sql - * @param array $bindings - * @param string $boolean - * @return $this - * @static - */ - public static function havingRaw($sql, $bindings = array(), $boolean = 'and'){ - return \Illuminate\Database\Query\Builder::havingRaw($sql, $bindings, $boolean); - } - - /** - * Add a raw or having clause to the query. - * - * @param string $sql - * @param array $bindings - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function orHavingRaw($sql, $bindings = array()){ - return \Illuminate\Database\Query\Builder::orHavingRaw($sql, $bindings); - } - - /** - * Add an "order by" clause to the query. - * - * @param string $column - * @param string $direction - * @return $this - * @static - */ - public static function orderBy($column, $direction = 'asc'){ - return \Illuminate\Database\Query\Builder::orderBy($column, $direction); - } - - /** - * Add an "order by" clause for a timestamp to the query. - * - * @param string $column - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function latest($column = 'created_at'){ - return \Illuminate\Database\Query\Builder::latest($column); - } - - /** - * Add an "order by" clause for a timestamp to the query. - * - * @param string $column - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function oldest($column = 'created_at'){ - return \Illuminate\Database\Query\Builder::oldest($column); - } - - /** - * Add a raw "order by" clause to the query. - * - * @param string $sql - * @param array $bindings - * @return $this - * @static - */ - public static function orderByRaw($sql, $bindings = array()){ - return \Illuminate\Database\Query\Builder::orderByRaw($sql, $bindings); - } - - /** - * Set the "offset" value of the query. - * - * @param int $value - * @return $this - * @static - */ - public static function offset($value){ - return \Illuminate\Database\Query\Builder::offset($value); - } - - /** - * Alias to set the "offset" value of the query. - * - * @param int $value - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function skip($value){ - return \Illuminate\Database\Query\Builder::skip($value); - } - - /** - * Set the "limit" value of the query. - * - * @param int $value - * @return $this - * @static - */ - public static function limit($value){ - return \Illuminate\Database\Query\Builder::limit($value); - } - - /** - * Alias to set the "limit" value of the query. - * - * @param int $value - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function take($value){ - return \Illuminate\Database\Query\Builder::take($value); - } - - /** - * Set the limit and offset for a given page. - * - * @param int $page - * @param int $perPage - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function forPage($page, $perPage = 15){ - return \Illuminate\Database\Query\Builder::forPage($page, $perPage); - } - - /** - * Add a union statement to the query. - * - * @param \Illuminate\Database\Query\Builder|\Closure $query - * @param bool $all - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function union($query, $all = false){ - return \Illuminate\Database\Query\Builder::union($query, $all); - } - - /** - * Add a union all statement to the query. - * - * @param \Illuminate\Database\Query\Builder|\Closure $query - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function unionAll($query){ - return \Illuminate\Database\Query\Builder::unionAll($query); - } - - /** - * Lock the selected rows in the table. - * - * @param bool $value - * @return $this - * @static - */ - public static function lock($value = true){ - return \Illuminate\Database\Query\Builder::lock($value); - } - - /** - * Lock the selected rows in the table for updating. - * - * @return \Illuminate\Database\Query\Builder - * @static - */ - public static function lockForUpdate(){ - return \Illuminate\Database\Query\Builder::lockForUpdate(); - } - - /** - * Share lock the selected rows in the table. - * - * @return \Illuminate\Database\Query\Builder - * @static - */ - public static function sharedLock(){ - return \Illuminate\Database\Query\Builder::sharedLock(); - } - - /** - * Get the SQL representation of the query. - * - * @return string - * @static - */ - public static function toSql(){ - return \Illuminate\Database\Query\Builder::toSql(); - } - - /** - * Indicate that the query results should be cached. - * - * @param \DateTime|int $minutes - * @param string $key - * @return $this - * @static - */ - public static function remember($minutes, $key = null){ - return \Illuminate\Database\Query\Builder::remember($minutes, $key); - } - - /** - * Indicate that the query results should be cached forever. - * - * @param string $key - * @return \Illuminate\Database\Query\Builder|static - * @static - */ - public static function rememberForever($key = null){ - return \Illuminate\Database\Query\Builder::rememberForever($key); - } - - /** - * Indicate that the results, if cached, should use the given cache tags. - * - * @param array|mixed $cacheTags - * @return $this - * @static - */ - public static function cacheTags($cacheTags){ - return \Illuminate\Database\Query\Builder::cacheTags($cacheTags); - } - - /** - * Indicate that the results, if cached, should use the given cache driver. - * - * @param string $cacheDriver - * @return $this - * @static - */ - public static function cacheDriver($cacheDriver){ - return \Illuminate\Database\Query\Builder::cacheDriver($cacheDriver); - } - - /** - * Execute the query as a fresh "select" statement. - * - * @param array $columns - * @return array|static[] - * @static - */ - public static function getFresh($columns = array()){ - return \Illuminate\Database\Query\Builder::getFresh($columns); - } - - /** - * Execute the query as a cached "select" statement. - * - * @param array $columns - * @return array - * @static - */ - public static function getCached($columns = array()){ - return \Illuminate\Database\Query\Builder::getCached($columns); - } - - /** - * Get a unique cache key for the complete query. - * - * @return string - * @static - */ - public static function getCacheKey(){ - return \Illuminate\Database\Query\Builder::getCacheKey(); - } - - /** - * Generate the unique cache key for the query. - * - * @return string - * @static - */ - public static function generateCacheKey(){ - return \Illuminate\Database\Query\Builder::generateCacheKey(); - } - - /** - * Concatenate values of a given column as a string. - * - * @param string $column - * @param string $glue - * @return string - * @static - */ - public static function implode($column, $glue = null){ - return \Illuminate\Database\Query\Builder::implode($column, $glue); - } - - /** - * Build a paginator instance from a raw result array. - * - * @param \Illuminate\Pagination\Factory $paginator - * @param array $results - * @param int $perPage - * @return \Illuminate\Pagination\Paginator - * @static - */ - public static function buildRawPaginator($paginator, $results, $perPage){ - return \Illuminate\Database\Query\Builder::buildRawPaginator($paginator, $results, $perPage); - } - - /** - * Get the count of the total records for pagination. - * - * @return int - * @static - */ - public static function getPaginationCount(){ - return \Illuminate\Database\Query\Builder::getPaginationCount(); - } - - /** - * Determine if any rows exist for the current query. - * - * @return bool - * @static - */ - public static function exists(){ - return \Illuminate\Database\Query\Builder::exists(); - } - - /** - * Retrieve the "count" result of the query. - * - * @param string $columns - * @return int - * @static - */ - public static function count($columns = '*'){ - return \Illuminate\Database\Query\Builder::count($columns); - } - - /** - * Retrieve the minimum value of a given column. - * - * @param string $column - * @return mixed - * @static - */ - public static function min($column){ - return \Illuminate\Database\Query\Builder::min($column); - } - - /** - * Retrieve the maximum value of a given column. - * - * @param string $column - * @return mixed - * @static - */ - public static function max($column){ - return \Illuminate\Database\Query\Builder::max($column); - } - - /** - * Retrieve the sum of the values of a given column. - * - * @param string $column - * @return mixed - * @static - */ - public static function sum($column){ - return \Illuminate\Database\Query\Builder::sum($column); - } - - /** - * Retrieve the average of the values of a given column. - * - * @param string $column - * @return mixed - * @static - */ - public static function avg($column){ - return \Illuminate\Database\Query\Builder::avg($column); - } - - /** - * Execute an aggregate function on the database. - * - * @param string $function - * @param array $columns - * @return mixed - * @static - */ - public static function aggregate($function, $columns = array()){ - return \Illuminate\Database\Query\Builder::aggregate($function, $columns); - } - - /** - * Insert a new record into the database. - * - * @param array $values - * @return bool - * @static - */ - public static function insert($values){ - return \Illuminate\Database\Query\Builder::insert($values); - } - - /** - * Insert a new record and get the value of the primary key. - * - * @param array $values - * @param string $sequence - * @return int - * @static - */ - public static function insertGetId($values, $sequence = null){ - return \Illuminate\Database\Query\Builder::insertGetId($values, $sequence); - } - - /** - * Run a truncate statement on the table. - * - * @return void - * @static - */ - public static function truncate(){ - \Illuminate\Database\Query\Builder::truncate(); - } - - /** - * Merge an array of where clauses and bindings. - * - * @param array $wheres - * @param array $bindings - * @return void - * @static - */ - public static function mergeWheres($wheres, $bindings){ - \Illuminate\Database\Query\Builder::mergeWheres($wheres, $bindings); - } - - /** - * Create a raw database expression. - * - * @param mixed $value - * @return \Illuminate\Database\Query\Expression - * @static - */ - public static function raw($value){ - return \Illuminate\Database\Query\Builder::raw($value); - } - - /** - * Get the current query value bindings in a flattened array. - * - * @return array - * @static - */ - public static function getBindings(){ - return \Illuminate\Database\Query\Builder::getBindings(); - } - - /** - * Get the raw array of bindings. - * - * @return array - * @static - */ - public static function getRawBindings(){ - return \Illuminate\Database\Query\Builder::getRawBindings(); - } - - /** - * Set the bindings on the query builder. - * - * @param array $bindings - * @param string $type - * @return $this - * @throws \InvalidArgumentException - * @static - */ - public static function setBindings($bindings, $type = 'where'){ - return \Illuminate\Database\Query\Builder::setBindings($bindings, $type); - } - - /** - * Add a binding to the query. - * - * @param mixed $value - * @param string $type - * @return $this - * @throws \InvalidArgumentException - * @static - */ - public static function addBinding($value, $type = 'where'){ - return \Illuminate\Database\Query\Builder::addBinding($value, $type); - } - - /** - * Merge an array of bindings into our bindings. - * - * @param \Illuminate\Database\Query\Builder $query - * @return $this - * @static - */ - public static function mergeBindings($query){ - return \Illuminate\Database\Query\Builder::mergeBindings($query); - } - - /** - * Get the database query processor instance. - * - * @return \Illuminate\Database\Query\Processors\Processor - * @static - */ - public static function getProcessor(){ - return \Illuminate\Database\Query\Builder::getProcessor(); - } - - /** - * Get the query grammar instance. - * - * @return \Illuminate\Database\Grammar - * @static - */ - public static function getGrammar(){ - return \Illuminate\Database\Query\Builder::getGrammar(); - } - - /** - * Use the write pdo for query. - * - * @return $this - * @static - */ - public static function useWritePdo(){ - return \Illuminate\Database\Query\Builder::useWritePdo(); - } - - } - - - class Event extends \Illuminate\Support\Facades\Event{ - - /** - * Register an event listener with the dispatcher. - * - * @param string|array $events - * @param mixed $listener - * @param int $priority - * @return void - * @static - */ - public static function listen($events, $listener, $priority = 0){ - \Illuminate\Events\Dispatcher::listen($events, $listener, $priority); - } - - /** - * Determine if a given event has listeners. - * - * @param string $eventName - * @return bool - * @static - */ - public static function hasListeners($eventName){ - return \Illuminate\Events\Dispatcher::hasListeners($eventName); - } - - /** - * Register a queued event and payload. - * - * @param string $event - * @param array $payload - * @return void - * @static - */ - public static function queue($event, $payload = array()){ - \Illuminate\Events\Dispatcher::queue($event, $payload); - } - - /** - * Register an event subscriber with the dispatcher. - * - * @param string $subscriber - * @return void - * @static - */ - public static function subscribe($subscriber){ - \Illuminate\Events\Dispatcher::subscribe($subscriber); - } - - /** - * Fire an event until the first non-null response is returned. - * - * @param string $event - * @param array $payload - * @return mixed - * @static - */ - public static function until($event, $payload = array()){ - return \Illuminate\Events\Dispatcher::until($event, $payload); - } - - /** - * Flush a set of queued events. - * - * @param string $event - * @return void - * @static - */ - public static function flush($event){ - \Illuminate\Events\Dispatcher::flush($event); - } - - /** - * Get the event that is currently firing. - * - * @return string - * @static - */ - public static function firing(){ - return \Illuminate\Events\Dispatcher::firing(); - } - - /** - * Fire an event and call the listeners. - * - * @param string $event - * @param mixed $payload - * @param bool $halt - * @return array|null - * @static - */ - public static function fire($event, $payload = array(), $halt = false){ - return \Illuminate\Events\Dispatcher::fire($event, $payload, $halt); - } - - /** - * Get all of the listeners for a given event name. - * - * @param string $eventName - * @return array - * @static - */ - public static function getListeners($eventName){ - return \Illuminate\Events\Dispatcher::getListeners($eventName); - } - - /** - * Register an event listener with the dispatcher. - * - * @param mixed $listener - * @return mixed - * @static - */ - public static function makeListener($listener){ - return \Illuminate\Events\Dispatcher::makeListener($listener); - } - - /** - * Create a class based listener using the IoC container. - * - * @param mixed $listener - * @return \Closure - * @static - */ - public static function createClassListener($listener){ - return \Illuminate\Events\Dispatcher::createClassListener($listener); - } - - /** - * Remove a set of listeners from the dispatcher. - * - * @param string $event - * @return void - * @static - */ - public static function forget($event){ - \Illuminate\Events\Dispatcher::forget($event); - } - - /** - * Forget all of the queued listeners. - * - * @return void - * @static - */ - public static function forgetQueued(){ - \Illuminate\Events\Dispatcher::forgetQueued(); - } - - } - - - class File extends \Illuminate\Support\Facades\File{ - - /** - * Determine if a file exists. - * - * @param string $path - * @return bool - * @static - */ - public static function exists($path){ - return \Illuminate\Filesystem\Filesystem::exists($path); - } - - /** - * Get the contents of a file. - * - * @param string $path - * @return string - * @throws FileNotFoundException - * @static - */ - public static function get($path){ - return \Illuminate\Filesystem\Filesystem::get($path); - } - - /** - * Get the returned value of a file. - * - * @param string $path - * @return mixed - * @throws FileNotFoundException - * @static - */ - public static function getRequire($path){ - return \Illuminate\Filesystem\Filesystem::getRequire($path); - } - - /** - * Require the given file once. - * - * @param string $file - * @return mixed - * @static - */ - public static function requireOnce($file){ - return \Illuminate\Filesystem\Filesystem::requireOnce($file); - } - - /** - * Write the contents of a file. - * - * @param string $path - * @param string $contents - * @param bool $lock - * @return int - * @static - */ - public static function put($path, $contents, $lock = false){ - return \Illuminate\Filesystem\Filesystem::put($path, $contents, $lock); - } - - /** - * Prepend to a file. - * - * @param string $path - * @param string $data - * @return int - * @static - */ - public static function prepend($path, $data){ - return \Illuminate\Filesystem\Filesystem::prepend($path, $data); - } - - /** - * Append to a file. - * - * @param string $path - * @param string $data - * @return int - * @static - */ - public static function append($path, $data){ - return \Illuminate\Filesystem\Filesystem::append($path, $data); - } - - /** - * Delete the file at a given path. - * - * @param string|array $paths - * @return bool - * @static - */ - public static function delete($paths){ - return \Illuminate\Filesystem\Filesystem::delete($paths); - } - - /** - * Move a file to a new location. - * - * @param string $path - * @param string $target - * @return bool - * @static - */ - public static function move($path, $target){ - return \Illuminate\Filesystem\Filesystem::move($path, $target); - } - - /** - * Copy a file to a new location. - * - * @param string $path - * @param string $target - * @return bool - * @static - */ - public static function copy($path, $target){ - return \Illuminate\Filesystem\Filesystem::copy($path, $target); - } - - /** - * Extract the file name from a file path. - * - * @param string $path - * @return string - * @static - */ - public static function name($path){ - return \Illuminate\Filesystem\Filesystem::name($path); - } - - /** - * Extract the file extension from a file path. - * - * @param string $path - * @return string - * @static - */ - public static function extension($path){ - return \Illuminate\Filesystem\Filesystem::extension($path); - } - - /** - * Get the file type of a given file. - * - * @param string $path - * @return string - * @static - */ - public static function type($path){ - return \Illuminate\Filesystem\Filesystem::type($path); - } - - /** - * Get the file size of a given file. - * - * @param string $path - * @return int - * @static - */ - public static function size($path){ - return \Illuminate\Filesystem\Filesystem::size($path); - } - - /** - * Get the file's last modification time. - * - * @param string $path - * @return int - * @static - */ - public static function lastModified($path){ - return \Illuminate\Filesystem\Filesystem::lastModified($path); - } - - /** - * Determine if the given path is a directory. - * - * @param string $directory - * @return bool - * @static - */ - public static function isDirectory($directory){ - return \Illuminate\Filesystem\Filesystem::isDirectory($directory); - } - - /** - * Determine if the given path is writable. - * - * @param string $path - * @return bool - * @static - */ - public static function isWritable($path){ - return \Illuminate\Filesystem\Filesystem::isWritable($path); - } - - /** - * Determine if the given path is a file. - * - * @param string $file - * @return bool - * @static - */ - public static function isFile($file){ - return \Illuminate\Filesystem\Filesystem::isFile($file); - } - - /** - * Find path names matching a given pattern. - * - * @param string $pattern - * @param int $flags - * @return array - * @static - */ - public static function glob($pattern, $flags = 0){ - return \Illuminate\Filesystem\Filesystem::glob($pattern, $flags); - } - - /** - * Get an array of all files in a directory. - * - * @param string $directory - * @return array - * @static - */ - public static function files($directory){ - return \Illuminate\Filesystem\Filesystem::files($directory); - } - - /** - * Get all of the files from the given directory (recursive). - * - * @param string $directory - * @return array - * @static - */ - public static function allFiles($directory){ - return \Illuminate\Filesystem\Filesystem::allFiles($directory); - } - - /** - * Get all of the directories within a given directory. - * - * @param string $directory - * @return array - * @static - */ - public static function directories($directory){ - return \Illuminate\Filesystem\Filesystem::directories($directory); - } - - /** - * Create a directory. - * - * @param string $path - * @param int $mode - * @param bool $recursive - * @param bool $force - * @return bool - * @static - */ - public static function makeDirectory($path, $mode = 493, $recursive = false, $force = false){ - return \Illuminate\Filesystem\Filesystem::makeDirectory($path, $mode, $recursive, $force); - } - - /** - * Copy a directory from one location to another. - * - * @param string $directory - * @param string $destination - * @param int $options - * @return bool - * @static - */ - public static function copyDirectory($directory, $destination, $options = null){ - return \Illuminate\Filesystem\Filesystem::copyDirectory($directory, $destination, $options); - } - - /** - * Recursively delete a directory. - * - * The directory itself may be optionally preserved. - * - * @param string $directory - * @param bool $preserve - * @return bool - * @static - */ - public static function deleteDirectory($directory, $preserve = false){ - return \Illuminate\Filesystem\Filesystem::deleteDirectory($directory, $preserve); - } - - /** - * Empty the specified directory of all files and folders. - * - * @param string $directory - * @return bool - * @static - */ - public static function cleanDirectory($directory){ - return \Illuminate\Filesystem\Filesystem::cleanDirectory($directory); - } - - } - - - class Form extends \Illuminate\Support\Facades\Form{ - - /** - * Open up a new HTML form. - * - * @param array $options - * @return string - * @static - */ - public static function open($options = array()){ - return \Illuminate\Html\FormBuilder::open($options); - } - - /** - * Create a new model based form builder. - * - * @param mixed $model - * @param array $options - * @return string - * @static - */ - public static function model($model, $options = array()){ - return \Illuminate\Html\FormBuilder::model($model, $options); - } - - /** - * Set the model instance on the form builder. - * - * @param mixed $model - * @return void - * @static - */ - public static function setModel($model){ - \Illuminate\Html\FormBuilder::setModel($model); - } - - /** - * Close the current form. - * - * @return string - * @static - */ - public static function close(){ - return \Illuminate\Html\FormBuilder::close(); - } - - /** - * Generate a hidden field with the current CSRF token. - * - * @return string - * @static - */ - public static function token(){ - return \Illuminate\Html\FormBuilder::token(); - } - - /** - * Create a form label element. - * - * @param string $name - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function label($name, $value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::label($name, $value, $options); - } - - /** - * Create a form input field. - * - * @param string $type - * @param string $name - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function input($type, $name, $value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::input($type, $name, $value, $options); - } - - /** - * Create a text input field. - * - * @param string $name - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function text($name, $value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::text($name, $value, $options); - } - - /** - * Create a password input field. - * - * @param string $name - * @param array $options - * @return string - * @static - */ - public static function password($name, $options = array()){ - return \Illuminate\Html\FormBuilder::password($name, $options); - } - - /** - * Create a hidden input field. - * - * @param string $name - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function hidden($name, $value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::hidden($name, $value, $options); - } - - /** - * Create an e-mail input field. - * - * @param string $name - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function email($name, $value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::email($name, $value, $options); - } - - /** - * Create a url input field. - * - * @param string $name - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function url($name, $value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::url($name, $value, $options); - } - - /** - * Create a file input field. - * - * @param string $name - * @param array $options - * @return string - * @static - */ - public static function file($name, $options = array()){ - return \Illuminate\Html\FormBuilder::file($name, $options); - } - - /** - * Create a textarea input field. - * - * @param string $name - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function textarea($name, $value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::textarea($name, $value, $options); - } - - /** - * Create a number input field. - * - * @param string $name - * @param string|null $value - * @param array $options - * @return string - * @static - */ - public static function number($name, $value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::number($name, $value, $options); - } - - /** - * Create a select box field. - * - * @param string $name - * @param array $list - * @param string $selected - * @param array $options - * @return string - * @static - */ - public static function select($name, $list = array(), $selected = null, $options = array()){ - return \Illuminate\Html\FormBuilder::select($name, $list, $selected, $options); - } - - /** - * Create a select range field. - * - * @param string $name - * @param string $begin - * @param string $end - * @param string $selected - * @param array $options - * @return string - * @static - */ - public static function selectRange($name, $begin, $end, $selected = null, $options = array()){ - return \Illuminate\Html\FormBuilder::selectRange($name, $begin, $end, $selected, $options); - } - - /** - * Create a select year field. - * - * @param string $name - * @param string $begin - * @param string $end - * @param string $selected - * @param array $options - * @return string - * @static - */ - public static function selectYear(){ - return \Illuminate\Html\FormBuilder::selectYear(); - } - - /** - * Create a select month field. - * - * @param string $name - * @param string $selected - * @param array $options - * @param string $format - * @return string - * @static - */ - public static function selectMonth($name, $selected = null, $options = array(), $format = '%B'){ - return \Illuminate\Html\FormBuilder::selectMonth($name, $selected, $options, $format); - } - - /** - * Get the select option for the given value. - * - * @param string $display - * @param string $value - * @param string $selected - * @return string - * @static - */ - public static function getSelectOption($display, $value, $selected){ - return \Illuminate\Html\FormBuilder::getSelectOption($display, $value, $selected); - } - - /** - * Create a checkbox input field. - * - * @param string $name - * @param mixed $value - * @param bool $checked - * @param array $options - * @return string - * @static - */ - public static function checkbox($name, $value = 1, $checked = null, $options = array()){ - return \Illuminate\Html\FormBuilder::checkbox($name, $value, $checked, $options); - } - - /** - * Create a radio button input field. - * - * @param string $name - * @param mixed $value - * @param bool $checked - * @param array $options - * @return string - * @static - */ - public static function radio($name, $value = null, $checked = null, $options = array()){ - return \Illuminate\Html\FormBuilder::radio($name, $value, $checked, $options); - } - - /** - * Create a HTML reset input element. - * - * @param string $value - * @param array $attributes - * @return string - * @static - */ - public static function reset($value, $attributes = array()){ - return \Illuminate\Html\FormBuilder::reset($value, $attributes); - } - - /** - * Create a HTML image input element. - * - * @param string $url - * @param string $name - * @param array $attributes - * @return string - * @static - */ - public static function image($url, $name = null, $attributes = array()){ - return \Illuminate\Html\FormBuilder::image($url, $name, $attributes); - } - - /** - * Create a submit button element. - * - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function submit($value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::submit($value, $options); - } - - /** - * Create a button element. - * - * @param string $value - * @param array $options - * @return string - * @static - */ - public static function button($value = null, $options = array()){ - return \Illuminate\Html\FormBuilder::button($value, $options); - } - - /** - * Get the ID attribute for a field name. - * - * @param string $name - * @param array $attributes - * @return string - * @static - */ - public static function getIdAttribute($name, $attributes){ - return \Illuminate\Html\FormBuilder::getIdAttribute($name, $attributes); - } - - /** - * Get the value that should be assigned to the field. - * - * @param string $name - * @param string $value - * @return string - * @static - */ - public static function getValueAttribute($name, $value = null){ - return \Illuminate\Html\FormBuilder::getValueAttribute($name, $value); - } - - /** - * Get a value from the session's old input. - * - * @param string $name - * @return string - * @static - */ - public static function old($name){ - return \Illuminate\Html\FormBuilder::old($name); - } - - /** - * Determine if the old input is empty. - * - * @return bool - * @static - */ - public static function oldInputIsEmpty(){ - return \Illuminate\Html\FormBuilder::oldInputIsEmpty(); - } - - /** - * Get the session store implementation. - * - * @return \Illuminate\Session\Store $session - * @static - */ - public static function getSessionStore(){ - return \Illuminate\Html\FormBuilder::getSessionStore(); - } - - /** - * Set the session store implementation. - * - * @param \Illuminate\Session\Store $session - * @return $this - * @static - */ - public static function setSessionStore($session){ - return \Illuminate\Html\FormBuilder::setSessionStore($session); - } - - /** - * Register a custom macro. - * - * @param string $name - * @param callable $macro - * @return void - * @static - */ - public static function macro($name, $macro){ - \Illuminate\Html\FormBuilder::macro($name, $macro); - } - - /** - * Checks if macro is registered - * - * @param string $name - * @return boolean - * @static - */ - public static function hasMacro($name){ - return \Illuminate\Html\FormBuilder::hasMacro($name); - } - - } - - - class Hash extends \Illuminate\Support\Facades\Hash{ - - /** - * Hash the given value. - * - * @param string $value - * @param array $options - * @return string - * @throws \RuntimeException - * @static - */ - public static function make($value, $options = array()){ - return \Illuminate\Hashing\BcryptHasher::make($value, $options); - } - - /** - * Check the given plain value against a hash. - * - * @param string $value - * @param string $hashedValue - * @param array $options - * @return bool - * @static - */ - public static function check($value, $hashedValue, $options = array()){ - return \Illuminate\Hashing\BcryptHasher::check($value, $hashedValue, $options); - } - - /** - * Check if the given hash has been hashed using the given options. - * - * @param string $hashedValue - * @param array $options - * @return bool - * @static - */ - public static function needsRehash($hashedValue, $options = array()){ - return \Illuminate\Hashing\BcryptHasher::needsRehash($hashedValue, $options); - } - - /** - * Set the default crypt cost factor. - * - * @param int $rounds - * @return void - * @static - */ - public static function setRounds($rounds){ - \Illuminate\Hashing\BcryptHasher::setRounds($rounds); - } - - } - - - class HTML extends \Illuminate\Support\Facades\HTML{ - - /** - * Convert an HTML string to entities. - * - * @param string $value - * @return string - * @static - */ - public static function entities($value){ - return \Illuminate\Html\HtmlBuilder::entities($value); - } - - /** - * Convert entities to HTML characters. - * - * @param string $value - * @return string - * @static - */ - public static function decode($value){ - return \Illuminate\Html\HtmlBuilder::decode($value); - } - - /** - * Generate a link to a JavaScript file. - * - * @param string $url - * @param array $attributes - * @param bool $secure - * @return string - * @static - */ - public static function script($url, $attributes = array(), $secure = null){ - return \Illuminate\Html\HtmlBuilder::script($url, $attributes, $secure); - } - - /** - * Generate a link to a CSS file. - * - * @param string $url - * @param array $attributes - * @param bool $secure - * @return string - * @static - */ - public static function style($url, $attributes = array(), $secure = null){ - return \Illuminate\Html\HtmlBuilder::style($url, $attributes, $secure); - } - - /** - * Generate an HTML image element. - * - * @param string $url - * @param string $alt - * @param array $attributes - * @param bool $secure - * @return string - * @static - */ - public static function image($url, $alt = null, $attributes = array(), $secure = null){ - return \Illuminate\Html\HtmlBuilder::image($url, $alt, $attributes, $secure); - } - - /** - * Generate a HTML link. - * - * @param string $url - * @param string $title - * @param array $attributes - * @param bool $secure - * @return string - * @static - */ - public static function link($url, $title = null, $attributes = array(), $secure = null){ - return \Illuminate\Html\HtmlBuilder::link($url, $title, $attributes, $secure); - } - - /** - * Generate a HTTPS HTML link. - * - * @param string $url - * @param string $title - * @param array $attributes - * @return string - * @static - */ - public static function secureLink($url, $title = null, $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::secureLink($url, $title, $attributes); - } - - /** - * Generate a HTML link to an asset. - * - * @param string $url - * @param string $title - * @param array $attributes - * @param bool $secure - * @return string - * @static - */ - public static function linkAsset($url, $title = null, $attributes = array(), $secure = null){ - return \Illuminate\Html\HtmlBuilder::linkAsset($url, $title, $attributes, $secure); - } - - /** - * Generate a HTTPS HTML link to an asset. - * - * @param string $url - * @param string $title - * @param array $attributes - * @return string - * @static - */ - public static function linkSecureAsset($url, $title = null, $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::linkSecureAsset($url, $title, $attributes); - } - - /** - * Generate a HTML link to a named route. - * - * @param string $name - * @param string $title - * @param array $parameters - * @param array $attributes - * @return string - * @static - */ - public static function linkRoute($name, $title = null, $parameters = array(), $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::linkRoute($name, $title, $parameters, $attributes); - } - - /** - * Generate a HTML link to a controller action. - * - * @param string $action - * @param string $title - * @param array $parameters - * @param array $attributes - * @return string - * @static - */ - public static function linkAction($action, $title = null, $parameters = array(), $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::linkAction($action, $title, $parameters, $attributes); - } - - /** - * Generate a HTML link to an email address. - * - * @param string $email - * @param string $title - * @param array $attributes - * @return string - * @static - */ - public static function mailto($email, $title = null, $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::mailto($email, $title, $attributes); - } - - /** - * Obfuscate an e-mail address to prevent spam-bots from sniffing it. - * - * @param string $email - * @return string - * @static - */ - public static function email($email){ - return \Illuminate\Html\HtmlBuilder::email($email); - } - - /** - * Generate an ordered list of items. - * - * @param array $list - * @param array $attributes - * @return string - * @static - */ - public static function ol($list, $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::ol($list, $attributes); - } - - /** - * Generate an un-ordered list of items. - * - * @param array $list - * @param array $attributes - * @return string - * @static - */ - public static function ul($list, $attributes = array()){ - return \Illuminate\Html\HtmlBuilder::ul($list, $attributes); - } - - /** - * Build an HTML attribute string from an array. - * - * @param array $attributes - * @return string - * @static - */ - public static function attributes($attributes){ - return \Illuminate\Html\HtmlBuilder::attributes($attributes); - } - - /** - * Obfuscate a string to prevent spam-bots from sniffing it. - * - * @param string $value - * @return string - * @static - */ - public static function obfuscate($value){ - return \Illuminate\Html\HtmlBuilder::obfuscate($value); - } - - /** - * Register a custom macro. - * - * @param string $name - * @param callable $macro - * @return void - * @static - */ - public static function macro($name, $macro){ - \Illuminate\Html\HtmlBuilder::macro($name, $macro); - } - - /** - * Checks if macro is registered - * - * @param string $name - * @return boolean - * @static - */ - public static function hasMacro($name){ - return \Illuminate\Html\HtmlBuilder::hasMacro($name); - } - - } - - - class Input extends \Illuminate\Support\Facades\Input{ - - /** - * Return the Request instance. - * - * @return $this - * @static - */ - public static function instance(){ - return \Illuminate\Http\Request::instance(); - } - - /** - * Get the request method. - * - * @return string - * @static - */ - public static function method(){ - return \Illuminate\Http\Request::method(); - } - - /** - * Get the root URL for the application. - * - * @return string - * @static - */ - public static function root(){ - return \Illuminate\Http\Request::root(); - } - - /** - * Get the URL (no query string) for the request. - * - * @return string - * @static - */ - public static function url(){ - return \Illuminate\Http\Request::url(); - } - - /** - * Get the full URL for the request. - * - * @return string - * @static - */ - public static function fullUrl(){ - return \Illuminate\Http\Request::fullUrl(); - } - - /** - * Get the current path info for the request. - * - * @return string - * @static - */ - public static function path(){ - return \Illuminate\Http\Request::path(); - } - - /** - * Get the current encoded path info for the request. - * - * @return string - * @static - */ - public static function decodedPath(){ - return \Illuminate\Http\Request::decodedPath(); - } - - /** - * Get a segment from the URI (1 based index). - * - * @param string $index - * @param mixed $default - * @return string - * @static - */ - public static function segment($index, $default = null){ - return \Illuminate\Http\Request::segment($index, $default); - } - - /** - * Get all of the segments for the request path. - * - * @return array - * @static - */ - public static function segments(){ - return \Illuminate\Http\Request::segments(); - } - - /** - * Determine if the current request URI matches a pattern. - * - * @param mixed string - * @return bool - * @static - */ - public static function is(){ - return \Illuminate\Http\Request::is(); - } - - /** - * Determine if the request is the result of an AJAX call. - * - * @return bool - * @static - */ - public static function ajax(){ - return \Illuminate\Http\Request::ajax(); - } - - /** - * Determine if the request is over HTTPS. - * - * @return bool - * @static - */ - public static function secure(){ - return \Illuminate\Http\Request::secure(); - } - - /** - * Returns the client IP address. - * - * @return string - * @static - */ - public static function ip(){ - return \Illuminate\Http\Request::ip(); - } - - /** - * Returns the client IP addresses. - * - * @return array - * @static - */ - public static function ips(){ - return \Illuminate\Http\Request::ips(); - } - - /** - * Determine if the request contains a given input item key. - * - * @param string|array $key - * @return bool - * @static - */ - public static function exists($key){ - return \Illuminate\Http\Request::exists($key); - } - - /** - * Determine if the request contains a non-empty value for an input item. - * - * @param string|array $key - * @return bool - * @static - */ - public static function has($key){ - return \Illuminate\Http\Request::has($key); - } - - /** - * Get all of the input and files for the request. - * - * @return array - * @static - */ - public static function all(){ - return \Illuminate\Http\Request::all(); - } - - /** - * Retrieve an input item from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function input($key = null, $default = null){ - return \Illuminate\Http\Request::input($key, $default); - } - - /** - * Get a subset of the items from the input data. - * - * @param array $keys - * @return array - * @static - */ - public static function only($keys){ - return \Illuminate\Http\Request::only($keys); - } - - /** - * Get all of the input except for a specified array of items. - * - * @param array $keys - * @return array - * @static - */ - public static function except($keys){ - return \Illuminate\Http\Request::except($keys); - } - - /** - * Retrieve a query string item from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function query($key = null, $default = null){ - return \Illuminate\Http\Request::query($key, $default); - } - - /** - * Determine if a cookie is set on the request. - * - * @param string $key - * @return bool - * @static - */ - public static function hasCookie($key){ - return \Illuminate\Http\Request::hasCookie($key); - } - - /** - * Retrieve a cookie from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function cookie($key = null, $default = null){ - return \Illuminate\Http\Request::cookie($key, $default); - } - - /** - * Retrieve a file from the request. - * - * @param string $key - * @param mixed $default - * @return \Symfony\Component\HttpFoundation\File\UploadedFile|array - * @static - */ - public static function file($key = null, $default = null){ - return \Illuminate\Http\Request::file($key, $default); - } - - /** - * Determine if the uploaded data contains a file. - * - * @param string $key - * @return bool - * @static - */ - public static function hasFile($key){ - return \Illuminate\Http\Request::hasFile($key); - } - - /** - * Retrieve a header from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function header($key = null, $default = null){ - return \Illuminate\Http\Request::header($key, $default); - } - - /** - * Retrieve a server variable from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function server($key = null, $default = null){ - return \Illuminate\Http\Request::server($key, $default); - } - - /** - * Retrieve an old input item. - * - * @param string $key - * @param mixed $default - * @return mixed - * @static - */ - public static function old($key = null, $default = null){ - return \Illuminate\Http\Request::old($key, $default); - } - - /** - * Flash the input for the current request to the session. - * - * @param string $filter - * @param array $keys - * @return void - * @static - */ - public static function flash($filter = null, $keys = array()){ - \Illuminate\Http\Request::flash($filter, $keys); - } - - /** - * Flash only some of the input to the session. - * - * @param mixed string - * @return void - * @static - */ - public static function flashOnly($keys){ - \Illuminate\Http\Request::flashOnly($keys); - } - - /** - * Flash only some of the input to the session. - * - * @param mixed string - * @return void - * @static - */ - public static function flashExcept($keys){ - \Illuminate\Http\Request::flashExcept($keys); - } - - /** - * Flush all of the old input from the session. - * - * @return void - * @static - */ - public static function flush(){ - \Illuminate\Http\Request::flush(); - } - - /** - * Merge new input into the current request's input array. - * - * @param array $input - * @return void - * @static - */ - public static function merge($input){ - \Illuminate\Http\Request::merge($input); - } - - /** - * Replace the input for the current request. - * - * @param array $input - * @return void - * @static - */ - public static function replace($input){ - \Illuminate\Http\Request::replace($input); - } - - /** - * Get the JSON payload for the request. - * - * @param string $key - * @param mixed $default - * @return mixed - * @static - */ - public static function json($key = null, $default = null){ - return \Illuminate\Http\Request::json($key, $default); - } - - /** - * Determine if the request is sending JSON. - * - * @return bool - * @static - */ - public static function isJson(){ - return \Illuminate\Http\Request::isJson(); - } - - /** - * Determine if the current request is asking for JSON in return. - * - * @return bool - * @static - */ - public static function wantsJson(){ - return \Illuminate\Http\Request::wantsJson(); - } - - /** - * Get the data format expected in the response. - * - * @param string $default - * @return string - * @static - */ - public static function format($default = 'html'){ - return \Illuminate\Http\Request::format($default); - } - - /** - * Create an Illuminate request from a Symfony instance. - * - * @param \Symfony\Component\HttpFoundation\Request $request - * @return \Illuminate\Http\Request - * @static - */ - public static function createFromBase($request){ - return \Illuminate\Http\Request::createFromBase($request); - } - - /** - * Get the session associated with the request. - * - * @return \Illuminate\Session\Store - * @throws \RuntimeException - * @static - */ - public static function session(){ - return \Illuminate\Http\Request::session(); - } - - /** - * Sets the parameters for this request. - * - * This method also re-initializes all properties. - * - * @param array $query The GET parameters - * @param array $request The POST parameters - * @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) - * @param array $cookies The COOKIE parameters - * @param array $files The FILES parameters - * @param array $server The SERVER parameters - * @param string $content The raw body data - * @api - * @static - */ - public static function initialize($query = array(), $request = array(), $attributes = array(), $cookies = array(), $files = array(), $server = array(), $content = null){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::initialize($query, $request, $attributes, $cookies, $files, $server, $content); - } - - /** - * Creates a new request with values from PHP's super globals. - * - * @return \Symfony\Component\HttpFoundation\Request A new request - * @api - * @static - */ - public static function createFromGlobals(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::createFromGlobals(); - } - - /** - * Creates a Request based on a given URI and configuration. - * - * The information contained in the URI always take precedence - * over the other information (server and parameters). - * - * @param string $uri The URI - * @param string $method The HTTP method - * @param array $parameters The query (GET) or request (POST) parameters - * @param array $cookies The request cookies ($_COOKIE) - * @param array $files The request files ($_FILES) - * @param array $server The server parameters ($_SERVER) - * @param string $content The raw body data - * @return \Symfony\Component\HttpFoundation\Request A Request instance - * @api - * @static - */ - public static function create($uri, $method = 'GET', $parameters = array(), $cookies = array(), $files = array(), $server = array(), $content = null){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::create($uri, $method, $parameters, $cookies, $files, $server, $content); - } - - /** - * Sets a callable able to create a Request instance. - * - * This is mainly useful when you need to override the Request class - * to keep BC with an existing system. It should not be used for any - * other purpose. - * - * @param callable|null $callable A PHP callable - * @static - */ - public static function setFactory($callable){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setFactory($callable); - } - - /** - * Clones a request and overrides some of its parameters. - * - * @param array $query The GET parameters - * @param array $request The POST parameters - * @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) - * @param array $cookies The COOKIE parameters - * @param array $files The FILES parameters - * @param array $server The SERVER parameters - * @return \Symfony\Component\HttpFoundation\Request The duplicated request - * @api - * @static - */ - public static function duplicate($query = null, $request = null, $attributes = null, $cookies = null, $files = null, $server = null){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::duplicate($query, $request, $attributes, $cookies, $files, $server); - } - - /** - * Overrides the PHP global variables according to this request instance. - * - * It overrides $_GET, $_POST, $_REQUEST, $_SERVER, $_COOKIE. - * $_FILES is never overridden, see rfc1867 - * - * @api - * @static - */ - public static function overrideGlobals(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::overrideGlobals(); - } - - /** - * Sets a list of trusted proxies. - * - * You should only list the reverse proxies that you manage directly. - * - * @param array $proxies A list of trusted proxies - * @api - * @static - */ - public static function setTrustedProxies($proxies){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setTrustedProxies($proxies); - } - - /** - * Gets the list of trusted proxies. - * - * @return array An array of trusted proxies. - * @static - */ - public static function getTrustedProxies(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getTrustedProxies(); - } - - /** - * Sets a list of trusted host patterns. - * - * You should only list the hosts you manage using regexs. - * - * @param array $hostPatterns A list of trusted host patterns - * @static - */ - public static function setTrustedHosts($hostPatterns){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setTrustedHosts($hostPatterns); - } - - /** - * Gets the list of trusted host patterns. - * - * @return array An array of trusted host patterns. - * @static - */ - public static function getTrustedHosts(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getTrustedHosts(); - } - - /** - * Sets the name for trusted headers. - * - * The following header keys are supported: - * - * * Request::HEADER_CLIENT_IP: defaults to X-Forwarded-For (see getClientIp()) - * * Request::HEADER_CLIENT_HOST: defaults to X-Forwarded-Host (see getClientHost()) - * * Request::HEADER_CLIENT_PORT: defaults to X-Forwarded-Port (see getClientPort()) - * * Request::HEADER_CLIENT_PROTO: defaults to X-Forwarded-Proto (see getScheme() and isSecure()) - * - * Setting an empty value allows to disable the trusted header for the given key. - * - * @param string $key The header key - * @param string $value The header name - * @throws \InvalidArgumentException - * @static - */ - public static function setTrustedHeaderName($key, $value){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setTrustedHeaderName($key, $value); - } - - /** - * Gets the trusted proxy header name. - * - * @param string $key The header key - * @return string The header name - * @throws \InvalidArgumentException - * @static - */ - public static function getTrustedHeaderName($key){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getTrustedHeaderName($key); - } - - /** - * Normalizes a query string. - * - * It builds a normalized query string, where keys/value pairs are alphabetized, - * have consistent escaping and unneeded delimiters are removed. - * - * @param string $qs Query string - * @return string A normalized query string for the Request - * @static - */ - public static function normalizeQueryString($qs){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::normalizeQueryString($qs); - } - - /** - * Enables support for the _method request parameter to determine the intended HTTP method. - * - * Be warned that enabling this feature might lead to CSRF issues in your code. - * Check that you are using CSRF tokens when required. - * If the HTTP method parameter override is enabled, an html-form with method "POST" can be altered - * and used to send a "PUT" or "DELETE" request via the _method request parameter. - * If these methods are not protected against CSRF, this presents a possible vulnerability. - * - * The HTTP method can only be overridden when the real HTTP method is POST. - * - * @static - */ - public static function enableHttpMethodParameterOverride(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::enableHttpMethodParameterOverride(); - } - - /** - * Checks whether support for the _method request parameter is enabled. - * - * @return bool True when the _method request parameter is enabled, false otherwise - * @static - */ - public static function getHttpMethodParameterOverride(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getHttpMethodParameterOverride(); - } - - /** - * Gets a "parameter" value. - * - * This method is mainly useful for libraries that want to provide some flexibility. - * - * Order of precedence: GET, PATH, POST - * - * Avoid using this method in controllers: - * - * * slow - * * prefer to get from a "named" source - * - * It is better to explicitly get request parameters from the appropriate - * public property instead (query, attributes, request). - * - * @param string $key the key - * @param mixed $default the default value - * @param bool $deep is parameter deep in multidimensional array - * @return mixed - * @static - */ - public static function get($key, $default = null, $deep = false){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::get($key, $default, $deep); - } - - /** - * Gets the Session. - * - * @return \Symfony\Component\HttpFoundation\SessionInterface|null The session - * @api - * @static - */ - public static function getSession(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getSession(); - } - - /** - * Whether the request contains a Session which was started in one of the - * previous requests. - * - * @return bool - * @api - * @static - */ - public static function hasPreviousSession(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::hasPreviousSession(); - } - - /** - * Whether the request contains a Session object. - * - * This method does not give any information about the state of the session object, - * like whether the session is started or not. It is just a way to check if this Request - * is associated with a Session instance. - * - * @return bool true when the Request contains a Session object, false otherwise - * @api - * @static - */ - public static function hasSession(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::hasSession(); - } - - /** - * Sets the Session. - * - * @param \Symfony\Component\HttpFoundation\SessionInterface $session The Session - * @api - * @static - */ - public static function setSession($session){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setSession($session); - } - - /** - * Returns the client IP addresses. - * - * In the returned array the most trusted IP address is first, and the - * least trusted one last. The "real" client IP address is the last one, - * but this is also the least trusted one. Trusted proxies are stripped. - * - * Use this method carefully; you should use getClientIp() instead. - * - * @return array The client IP addresses - * @see getClientIp() - * @static - */ - public static function getClientIps(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getClientIps(); - } - - /** - * Returns the client IP address. - * - * This method can read the client IP address from the "X-Forwarded-For" header - * when trusted proxies were set via "setTrustedProxies()". The "X-Forwarded-For" - * header value is a comma+space separated list of IP addresses, the left-most - * being the original client, and each successive proxy that passed the request - * adding the IP address where it received the request from. - * - * If your reverse proxy uses a different header name than "X-Forwarded-For", - * ("Client-Ip" for instance), configure it via "setTrustedHeaderName()" with - * the "client-ip" key. - * - * @return string The client IP address - * @see getClientIps() - * @see http://en.wikipedia.org/wiki/X-Forwarded-For - * @api - * @static - */ - public static function getClientIp(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getClientIp(); - } - - /** - * Returns current script name. - * - * @return string - * @api - * @static - */ - public static function getScriptName(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getScriptName(); - } - - /** - * Returns the path being requested relative to the executed script. - * - * The path info always starts with a /. - * - * Suppose this request is instantiated from /mysite on localhost: - * - * * http://localhost/mysite returns an empty string - * * http://localhost/mysite/about returns '/about' - * * http://localhost/mysite/enco%20ded returns '/enco%20ded' - * * http://localhost/mysite/about?var=1 returns '/about' - * - * @return string The raw path (i.e. not urldecoded) - * @api - * @static - */ - public static function getPathInfo(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getPathInfo(); - } - - /** - * Returns the root path from which this request is executed. - * - * Suppose that an index.php file instantiates this request object: - * - * * http://localhost/index.php returns an empty string - * * http://localhost/index.php/page returns an empty string - * * http://localhost/web/index.php returns '/web' - * * http://localhost/we%20b/index.php returns '/we%20b' - * - * @return string The raw path (i.e. not urldecoded) - * @api - * @static - */ - public static function getBasePath(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getBasePath(); - } - - /** - * Returns the root URL from which this request is executed. - * - * The base URL never ends with a /. - * - * This is similar to getBasePath(), except that it also includes the - * script filename (e.g. index.php) if one exists. - * - * @return string The raw URL (i.e. not urldecoded) - * @api - * @static - */ - public static function getBaseUrl(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getBaseUrl(); - } - - /** - * Gets the request's scheme. - * - * @return string - * @api - * @static - */ - public static function getScheme(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getScheme(); - } - - /** - * Returns the port on which the request is made. - * - * This method can read the client port from the "X-Forwarded-Port" header - * when trusted proxies were set via "setTrustedProxies()". - * - * The "X-Forwarded-Port" header must contain the client port. - * - * If your reverse proxy uses a different header name than "X-Forwarded-Port", - * configure it via "setTrustedHeaderName()" with the "client-port" key. - * - * @return string - * @api - * @static - */ - public static function getPort(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getPort(); - } - - /** - * Returns the user. - * - * @return string|null - * @static - */ - public static function getUser(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getUser(); - } - - /** - * Returns the password. - * - * @return string|null - * @static - */ - public static function getPassword(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getPassword(); - } - - /** - * Gets the user info. - * - * @return string A user name and, optionally, scheme-specific information about how to gain authorization to access the server - * @static - */ - public static function getUserInfo(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getUserInfo(); - } - - /** - * Returns the HTTP host being requested. - * - * The port name will be appended to the host if it's non-standard. - * - * @return string - * @api - * @static - */ - public static function getHttpHost(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getHttpHost(); - } - - /** - * Returns the requested URI (path and query string). - * - * @return string The raw URI (i.e. not URI decoded) - * @api - * @static - */ - public static function getRequestUri(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getRequestUri(); - } - - /** - * Gets the scheme and HTTP host. - * - * If the URL was called with basic authentication, the user - * and the password are not added to the generated string. - * - * @return string The scheme and HTTP host - * @static - */ - public static function getSchemeAndHttpHost(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getSchemeAndHttpHost(); - } - - /** - * Generates a normalized URI (URL) for the Request. - * - * @return string A normalized URI (URL) for the Request - * @see getQueryString() - * @api - * @static - */ - public static function getUri(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getUri(); - } - - /** - * Generates a normalized URI for the given path. - * - * @param string $path A path to use instead of the current one - * @return string The normalized URI for the path - * @api - * @static - */ - public static function getUriForPath($path){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getUriForPath($path); - } - - /** - * Generates the normalized query string for the Request. - * - * It builds a normalized query string, where keys/value pairs are alphabetized - * and have consistent escaping. - * - * @return string|null A normalized query string for the Request - * @api - * @static - */ - public static function getQueryString(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getQueryString(); - } - - /** - * Checks whether the request is secure or not. - * - * This method can read the client port from the "X-Forwarded-Proto" header - * when trusted proxies were set via "setTrustedProxies()". - * - * The "X-Forwarded-Proto" header must contain the protocol: "https" or "http". - * - * If your reverse proxy uses a different header name than "X-Forwarded-Proto" - * ("SSL_HTTPS" for instance), configure it via "setTrustedHeaderName()" with - * the "client-proto" key. - * - * @return bool - * @api - * @static - */ - public static function isSecure(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::isSecure(); - } - - /** - * Returns the host name. - * - * This method can read the client port from the "X-Forwarded-Host" header - * when trusted proxies were set via "setTrustedProxies()". - * - * The "X-Forwarded-Host" header must contain the client host name. - * - * If your reverse proxy uses a different header name than "X-Forwarded-Host", - * configure it via "setTrustedHeaderName()" with the "client-host" key. - * - * @return string - * @throws \UnexpectedValueException when the host name is invalid - * @api - * @static - */ - public static function getHost(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getHost(); - } - - /** - * Sets the request method. - * - * @param string $method - * @api - * @static - */ - public static function setMethod($method){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setMethod($method); - } - - /** - * Gets the request "intended" method. - * - * If the X-HTTP-Method-Override header is set, and if the method is a POST, - * then it is used to determine the "real" intended HTTP method. - * - * The _method request parameter can also be used to determine the HTTP method, - * but only if enableHttpMethodParameterOverride() has been called. - * - * The method is always an uppercased string. - * - * @return string The request method - * @api - * @see getRealMethod() - * @static - */ - public static function getMethod(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getMethod(); - } - - /** - * Gets the "real" request method. - * - * @return string The request method - * @see getMethod() - * @static - */ - public static function getRealMethod(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getRealMethod(); - } - - /** - * Gets the mime type associated with the format. - * - * @param string $format The format - * @return string The associated mime type (null if not found) - * @api - * @static - */ - public static function getMimeType($format){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getMimeType($format); - } - - /** - * Gets the format associated with the mime type. - * - * @param string $mimeType The associated mime type - * @return string|null The format (null if not found) - * @api - * @static - */ - public static function getFormat($mimeType){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getFormat($mimeType); - } - - /** - * Associates a format with mime types. - * - * @param string $format The format - * @param string|array $mimeTypes The associated mime types (the preferred one must be the first as it will be used as the content type) - * @api - * @static - */ - public static function setFormat($format, $mimeTypes){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setFormat($format, $mimeTypes); - } - - /** - * Gets the request format. - * - * Here is the process to determine the format: - * - * * format defined by the user (with setRequestFormat()) - * * _format request parameter - * * $default - * - * @param string $default The default format - * @return string The request format - * @api - * @static - */ - public static function getRequestFormat($default = 'html'){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getRequestFormat($default); - } - - /** - * Sets the request format. - * - * @param string $format The request format. - * @api - * @static - */ - public static function setRequestFormat($format){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setRequestFormat($format); - } - - /** - * Gets the format associated with the request. - * - * @return string|null The format (null if no content type is present) - * @api - * @static - */ - public static function getContentType(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getContentType(); - } - - /** - * Sets the default locale. - * - * @param string $locale - * @api - * @static - */ - public static function setDefaultLocale($locale){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setDefaultLocale($locale); - } - - /** - * Get the default locale. - * - * @return string - * @static - */ - public static function getDefaultLocale(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getDefaultLocale(); - } - - /** - * Sets the locale. - * - * @param string $locale - * @api - * @static - */ - public static function setLocale($locale){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setLocale($locale); - } - - /** - * Get the locale. - * - * @return string - * @static - */ - public static function getLocale(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getLocale(); - } - - /** - * Checks if the request method is of specified type. - * - * @param string $method Uppercase request method (GET, POST etc). - * @return bool - * @static - */ - public static function isMethod($method){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::isMethod($method); - } - - /** - * Checks whether the method is safe or not. - * - * @return bool - * @api - * @static - */ - public static function isMethodSafe(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::isMethodSafe(); - } - - /** - * Returns the request body content. - * - * @param bool $asResource If true, a resource will be returned - * @return string|resource The request body content or a resource to read the body stream. - * @throws \LogicException - * @static - */ - public static function getContent($asResource = false){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getContent($asResource); - } - - /** - * Gets the Etags. - * - * @return array The entity tags - * @static - */ - public static function getETags(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getETags(); - } - - /** - * - * - * @return bool - * @static - */ - public static function isNoCache(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::isNoCache(); - } - - /** - * Returns the preferred language. - * - * @param array $locales An array of ordered available locales - * @return string|null The preferred locale - * @api - * @static - */ - public static function getPreferredLanguage($locales = null){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getPreferredLanguage($locales); - } - - /** - * Gets a list of languages acceptable by the client browser. - * - * @return array Languages ordered in the user browser preferences - * @api - * @static - */ - public static function getLanguages(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getLanguages(); - } - - /** - * Gets a list of charsets acceptable by the client browser. - * - * @return array List of charsets in preferable order - * @api - * @static - */ - public static function getCharsets(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getCharsets(); - } - - /** - * Gets a list of encodings acceptable by the client browser. - * - * @return array List of encodings in preferable order - * @static - */ - public static function getEncodings(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getEncodings(); - } - - /** - * Gets a list of content types acceptable by the client browser. - * - * @return array List of content types in preferable order - * @api - * @static - */ - public static function getAcceptableContentTypes(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getAcceptableContentTypes(); - } - - /** - * Returns true if the request is a XMLHttpRequest. - * - * It works if your JavaScript library sets an X-Requested-With HTTP header. - * It is known to work with common JavaScript frameworks: - * - * @link http://en.wikipedia.org/wiki/List_of_Ajax_frameworks#JavaScript - * @return bool true if the request is an XMLHttpRequest, false otherwise - * @api - * @static - */ - public static function isXmlHttpRequest(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::isXmlHttpRequest(); - } - - } - - - class Lang extends \Illuminate\Support\Facades\Lang{ - - /** - * Determine if a translation exists. - * - * @param string $key - * @param string $locale - * @return bool - * @static - */ - public static function has($key, $locale = null){ - return \Illuminate\Translation\Translator::has($key, $locale); - } - - /** - * Get the translation for the given key. - * - * @param string $key - * @param array $replace - * @param string $locale - * @return string - * @static - */ - public static function get($key, $replace = array(), $locale = null){ - return \Illuminate\Translation\Translator::get($key, $replace, $locale); - } - - /** - * Get a translation according to an integer value. - * - * @param string $key - * @param int $number - * @param array $replace - * @param string $locale - * @return string - * @static - */ - public static function choice($key, $number, $replace = array(), $locale = null){ - return \Illuminate\Translation\Translator::choice($key, $number, $replace, $locale); - } - - /** - * Get the translation for a given key. - * - * @param string $id - * @param array $parameters - * @param string $domain - * @param string $locale - * @return string - * @static - */ - public static function trans($id, $parameters = array(), $domain = 'messages', $locale = null){ - return \Illuminate\Translation\Translator::trans($id, $parameters, $domain, $locale); - } - - /** - * Get a translation according to an integer value. - * - * @param string $id - * @param int $number - * @param array $parameters - * @param string $domain - * @param string $locale - * @return string - * @static - */ - public static function transChoice($id, $number, $parameters = array(), $domain = 'messages', $locale = null){ - return \Illuminate\Translation\Translator::transChoice($id, $number, $parameters, $domain, $locale); - } - - /** - * Load the specified language group. - * - * @param string $namespace - * @param string $group - * @param string $locale - * @return void - * @static - */ - public static function load($namespace, $group, $locale){ - \Illuminate\Translation\Translator::load($namespace, $group, $locale); - } - - /** - * Add a new namespace to the loader. - * - * @param string $namespace - * @param string $hint - * @return void - * @static - */ - public static function addNamespace($namespace, $hint){ - \Illuminate\Translation\Translator::addNamespace($namespace, $hint); - } - - /** - * Parse a key into namespace, group, and item. - * - * @param string $key - * @return array - * @static - */ - public static function parseKey($key){ - return \Illuminate\Translation\Translator::parseKey($key); - } - - /** - * Get the message selector instance. - * - * @return \Symfony\Component\Translation\MessageSelector - * @static - */ - public static function getSelector(){ - return \Illuminate\Translation\Translator::getSelector(); - } - - /** - * Set the message selector instance. - * - * @param \Symfony\Component\Translation\MessageSelector $selector - * @return void - * @static - */ - public static function setSelector($selector){ - \Illuminate\Translation\Translator::setSelector($selector); - } - - /** - * Get the language line loader implementation. - * - * @return \Illuminate\Translation\LoaderInterface - * @static - */ - public static function getLoader(){ - return \Illuminate\Translation\Translator::getLoader(); - } - - /** - * Get the default locale being used. - * - * @return string - * @static - */ - public static function locale(){ - return \Illuminate\Translation\Translator::locale(); - } - - /** - * Get the default locale being used. - * - * @return string - * @static - */ - public static function getLocale(){ - return \Illuminate\Translation\Translator::getLocale(); - } - - /** - * Set the default locale. - * - * @param string $locale - * @return void - * @static - */ - public static function setLocale($locale){ - \Illuminate\Translation\Translator::setLocale($locale); - } - - /** - * Get the fallback locale being used. - * - * @return string - * @static - */ - public static function getFallback(){ - return \Illuminate\Translation\Translator::getFallback(); - } - - /** - * Set the fallback locale being used. - * - * @param string $fallback - * @return void - * @static - */ - public static function setFallback($fallback){ - \Illuminate\Translation\Translator::setFallback($fallback); - } - - /** - * Set the parsed value of a key. - * - * @param string $key - * @param array $parsed - * @return void - * @static - */ - public static function setParsedKey($key, $parsed){ - //Method inherited from \Illuminate\Support\NamespacedItemResolver - \Illuminate\Translation\Translator::setParsedKey($key, $parsed); - } - - } - - - class Log extends \Illuminate\Support\Facades\Log{ - - /** - * Adds a log record at the DEBUG level. - * - * @param string $message The log message - * @param array $context The log context - * @return Boolean Whether the record has been processed - * @static - */ - public static function debug($message, $context = array()){ - return \Monolog\Logger::debug($message, $context); - } - - /** - * Adds a log record at the INFO level. - * - * @param string $message The log message - * @param array $context The log context - * @return Boolean Whether the record has been processed - * @static - */ - public static function info($message, $context = array()){ - return \Monolog\Logger::info($message, $context); - } - - /** - * Adds a log record at the NOTICE level. - * - * @param string $message The log message - * @param array $context The log context - * @return Boolean Whether the record has been processed - * @static - */ - public static function notice($message, $context = array()){ - return \Monolog\Logger::notice($message, $context); - } - - /** - * Adds a log record at the WARNING level. - * - * @param string $message The log message - * @param array $context The log context - * @return Boolean Whether the record has been processed - * @static - */ - public static function warning($message, $context = array()){ - return \Monolog\Logger::warning($message, $context); - } - - /** - * Adds a log record at the ERROR level. - * - * @param string $message The log message - * @param array $context The log context - * @return Boolean Whether the record has been processed - * @static - */ - public static function error($message, $context = array()){ - return \Monolog\Logger::error($message, $context); - } - - /** - * Adds a log record at the CRITICAL level. - * - * @param string $message The log message - * @param array $context The log context - * @return Boolean Whether the record has been processed - * @static - */ - public static function critical($message, $context = array()){ - return \Monolog\Logger::critical($message, $context); - } - - /** - * Adds a log record at the ALERT level. - * - * @param string $message The log message - * @param array $context The log context - * @return Boolean Whether the record has been processed - * @static - */ - public static function alert($message, $context = array()){ - return \Monolog\Logger::alert($message, $context); - } - - /** - * Adds a log record at the EMERGENCY level. - * - * @param string $message The log message - * @param array $context The log context - * @return Boolean Whether the record has been processed - * @static - */ - public static function emergency($message, $context = array()){ - return \Monolog\Logger::emergency($message, $context); - } - - /** - * Register a file log handler. - * - * @param string $path - * @param string $level - * @return void - * @static - */ - public static function useFiles($path, $level = 'debug'){ - \Illuminate\Log\Writer::useFiles($path, $level); - } - - /** - * Register a daily file log handler. - * - * @param string $path - * @param int $days - * @param string $level - * @return void - * @static - */ - public static function useDailyFiles($path, $days = 0, $level = 'debug'){ - \Illuminate\Log\Writer::useDailyFiles($path, $days, $level); - } - - /** - * Register an error_log handler. - * - * @param string $level - * @param int $messageType - * @return void - * @static - */ - public static function useErrorLog($level = 'debug', $messageType = 0){ - \Illuminate\Log\Writer::useErrorLog($level, $messageType); - } - - /** - * Register a new callback handler for when - * a log event is triggered. - * - * @param \Closure $callback - * @return void - * @throws \RuntimeException - * @static - */ - public static function listen($callback){ - \Illuminate\Log\Writer::listen($callback); - } - - /** - * Get the underlying Monolog instance. - * - * @return \Monolog\Logger - * @static - */ - public static function getMonolog(){ - return \Illuminate\Log\Writer::getMonolog(); - } - - /** - * Get the event dispatcher instance. - * - * @return \Illuminate\Events\Dispatcher - * @static - */ - public static function getEventDispatcher(){ - return \Illuminate\Log\Writer::getEventDispatcher(); - } - - /** - * Set the event dispatcher instance. - * - * @param \Illuminate\Events\Dispatcher - * @return void - * @static - */ - public static function setEventDispatcher($dispatcher){ - \Illuminate\Log\Writer::setEventDispatcher($dispatcher); - } - - /** - * Dynamically pass log calls into the writer. - * - * @param mixed (level, param, param) - * @return mixed - * @static - */ - public static function write(){ - return \Illuminate\Log\Writer::write(); - } - - } - - - class Mail extends \Illuminate\Support\Facades\Mail{ - - /** - * Set the global from address and name. - * - * @param string $address - * @param string $name - * @return void - * @static - */ - public static function alwaysFrom($address, $name = null){ - \Illuminate\Mail\Mailer::alwaysFrom($address, $name); - } - - /** - * Send a new message when only a plain part. - * - * @param string $view - * @param array $data - * @param mixed $callback - * @return int - * @static - */ - public static function plain($view, $data, $callback){ - return \Illuminate\Mail\Mailer::plain($view, $data, $callback); - } - - /** - * Send a new message using a view. - * - * @param string|array $view - * @param array $data - * @param \Closure|string $callback - * @return void - * @static - */ - public static function send($view, $data, $callback){ - \Illuminate\Mail\Mailer::send($view, $data, $callback); - } - - /** - * Queue a new e-mail message for sending. - * - * @param string|array $view - * @param array $data - * @param \Closure|string $callback - * @param string $queue - * @return mixed - * @static - */ - public static function queue($view, $data, $callback, $queue = null){ - return \Illuminate\Mail\Mailer::queue($view, $data, $callback, $queue); - } - - /** - * Queue a new e-mail message for sending on the given queue. - * - * @param string $queue - * @param string|array $view - * @param array $data - * @param \Closure|string $callback - * @return mixed - * @static - */ - public static function queueOn($queue, $view, $data, $callback){ - return \Illuminate\Mail\Mailer::queueOn($queue, $view, $data, $callback); - } - - /** - * Queue a new e-mail message for sending after (n) seconds. - * - * @param int $delay - * @param string|array $view - * @param array $data - * @param \Closure|string $callback - * @param string $queue - * @return mixed - * @static - */ - public static function later($delay, $view, $data, $callback, $queue = null){ - return \Illuminate\Mail\Mailer::later($delay, $view, $data, $callback, $queue); - } - - /** - * Queue a new e-mail message for sending after (n) seconds on the given queue. - * - * @param string $queue - * @param int $delay - * @param string|array $view - * @param array $data - * @param \Closure|string $callback - * @return mixed - * @static - */ - public static function laterOn($queue, $delay, $view, $data, $callback){ - return \Illuminate\Mail\Mailer::laterOn($queue, $delay, $view, $data, $callback); - } - - /** - * Handle a queued e-mail message job. - * - * @param \Illuminate\Queue\Jobs\Job $job - * @param array $data - * @return void - * @static - */ - public static function handleQueuedMessage($job, $data){ - \Illuminate\Mail\Mailer::handleQueuedMessage($job, $data); - } - - /** - * Tell the mailer to not really send messages. - * - * @param bool $value - * @return void - * @static - */ - public static function pretend($value = true){ - \Illuminate\Mail\Mailer::pretend($value); - } - - /** - * Check if the mailer is pretending to send messages. - * - * @return bool - * @static - */ - public static function isPretending(){ - return \Illuminate\Mail\Mailer::isPretending(); - } - - /** - * Get the view factory instance. - * - * @return \Illuminate\View\Factory - * @static - */ - public static function getViewFactory(){ - return \Illuminate\Mail\Mailer::getViewFactory(); - } - - /** - * Get the Swift Mailer instance. - * - * @return \Swift_Mailer - * @static - */ - public static function getSwiftMailer(){ - return \Illuminate\Mail\Mailer::getSwiftMailer(); - } - - /** - * Get the array of failed recipients. - * - * @return array - * @static - */ - public static function failures(){ - return \Illuminate\Mail\Mailer::failures(); - } - - /** - * Set the Swift Mailer instance. - * - * @param \Swift_Mailer $swift - * @return void - * @static - */ - public static function setSwiftMailer($swift){ - \Illuminate\Mail\Mailer::setSwiftMailer($swift); - } - - /** - * Set the log writer instance. - * - * @param \Illuminate\Log\Writer $logger - * @return $this - * @static - */ - public static function setLogger($logger){ - return \Illuminate\Mail\Mailer::setLogger($logger); - } - - /** - * Set the queue manager instance. - * - * @param \Illuminate\Queue\QueueManager $queue - * @return $this - * @static - */ - public static function setQueue($queue){ - return \Illuminate\Mail\Mailer::setQueue($queue); - } - - /** - * Set the IoC container instance. - * - * @param \Illuminate\Container\Container $container - * @return void - * @static - */ - public static function setContainer($container){ - \Illuminate\Mail\Mailer::setContainer($container); - } - - } - - - class Paginator extends \Illuminate\Support\Facades\Paginator{ - - /** - * Get a new paginator instance. - * - * @param array $items - * @param int $total - * @param int|null $perPage - * @return \Illuminate\Pagination\Paginator - * @static - */ - public static function make($items, $total, $perPage = null){ - return \Illuminate\Pagination\Factory::make($items, $total, $perPage); - } - - /** - * Get the pagination view. - * - * @param \Illuminate\Pagination\Paginator $paginator - * @param string $view - * @return \Illuminate\View\View - * @static - */ - public static function getPaginationView($paginator, $view = null){ - return \Illuminate\Pagination\Factory::getPaginationView($paginator, $view); - } - - /** - * Get the number of the current page. - * - * @return int - * @static - */ - public static function getCurrentPage(){ - return \Illuminate\Pagination\Factory::getCurrentPage(); - } - - /** - * Set the number of the current page. - * - * @param int $number - * @return void - * @static - */ - public static function setCurrentPage($number){ - \Illuminate\Pagination\Factory::setCurrentPage($number); - } - - /** - * Get the root URL for the request. - * - * @return string - * @static - */ - public static function getCurrentUrl(){ - return \Illuminate\Pagination\Factory::getCurrentUrl(); - } - - /** - * Set the base URL in use by the paginator. - * - * @param string $baseUrl - * @return void - * @static - */ - public static function setBaseUrl($baseUrl){ - \Illuminate\Pagination\Factory::setBaseUrl($baseUrl); - } - - /** - * Set the input page parameter name used by the paginator. - * - * @param string $pageName - * @return void - * @static - */ - public static function setPageName($pageName){ - \Illuminate\Pagination\Factory::setPageName($pageName); - } - - /** - * Get the input page parameter name used by the paginator. - * - * @return string - * @static - */ - public static function getPageName(){ - return \Illuminate\Pagination\Factory::getPageName(); - } - - /** - * Get the name of the pagination view. - * - * @param string $view - * @return string - * @static - */ - public static function getViewName($view = null){ - return \Illuminate\Pagination\Factory::getViewName($view); - } - - /** - * Set the name of the pagination view. - * - * @param string $viewName - * @return void - * @static - */ - public static function setViewName($viewName){ - \Illuminate\Pagination\Factory::setViewName($viewName); - } - - /** - * Get the locale of the paginator. - * - * @return string - * @static - */ - public static function getLocale(){ - return \Illuminate\Pagination\Factory::getLocale(); - } - - /** - * Set the locale of the paginator. - * - * @param string $locale - * @return void - * @static - */ - public static function setLocale($locale){ - \Illuminate\Pagination\Factory::setLocale($locale); - } - - /** - * Get the active request instance. - * - * @return \Symfony\Component\HttpFoundation\Request - * @static - */ - public static function getRequest(){ - return \Illuminate\Pagination\Factory::getRequest(); - } - - /** - * Set the active request instance. - * - * @param \Symfony\Component\HttpFoundation\Request $request - * @return void - * @static - */ - public static function setRequest($request){ - \Illuminate\Pagination\Factory::setRequest($request); - } - - /** - * Get the current view factory. - * - * @return \Illuminate\View\Factory - * @static - */ - public static function getViewFactory(){ - return \Illuminate\Pagination\Factory::getViewFactory(); - } - - /** - * Set the current view factory. - * - * @param \Illuminate\View\Factory $view - * @return void - * @static - */ - public static function setViewFactory($view){ - \Illuminate\Pagination\Factory::setViewFactory($view); - } - - /** - * Get the translator instance. - * - * @return \Symfony\Component\Translation\TranslatorInterface - * @static - */ - public static function getTranslator(){ - return \Illuminate\Pagination\Factory::getTranslator(); - } - - } - - - class Password extends \Illuminate\Support\Facades\Password{ - - /** - * Send a password reminder to a user. - * - * @param array $credentials - * @param \Closure $callback - * @return string - * @static - */ - public static function remind($credentials, $callback = null){ - return \Illuminate\Auth\Reminders\PasswordBroker::remind($credentials, $callback); - } - - /** - * Send the password reminder e-mail. - * - * @param \Illuminate\Auth\Reminders\RemindableInterface $user - * @param string $token - * @param \Closure $callback - * @return int - * @static - */ - public static function sendReminder($user, $token, $callback = null){ - return \Illuminate\Auth\Reminders\PasswordBroker::sendReminder($user, $token, $callback); - } - - /** - * Reset the password for the given token. - * - * @param array $credentials - * @param \Closure $callback - * @return mixed - * @static - */ - public static function reset($credentials, $callback){ - return \Illuminate\Auth\Reminders\PasswordBroker::reset($credentials, $callback); - } - - /** - * Set a custom password validator. - * - * @param \Closure $callback - * @return void - * @static - */ - public static function validator($callback){ - \Illuminate\Auth\Reminders\PasswordBroker::validator($callback); - } - - /** - * Get the user for the given credentials. - * - * @param array $credentials - * @return \Illuminate\Auth\Reminders\RemindableInterface - * @throws \UnexpectedValueException - * @static - */ - public static function getUser($credentials){ - return \Illuminate\Auth\Reminders\PasswordBroker::getUser($credentials); - } - - } - - - class Queue extends \Illuminate\Support\Facades\Queue{ - - /** - * Register an event listener for the daemon queue loop. - * - * @param mixed $callback - * @return void - * @static - */ - public static function looping($callback){ - \Illuminate\Queue\QueueManager::looping($callback); - } - - /** - * Register an event listener for the failed job event. - * - * @param mixed $callback - * @return void - * @static - */ - public static function failing($callback){ - \Illuminate\Queue\QueueManager::failing($callback); - } - - /** - * Register an event listener for the daemon queue stopping. - * - * @param mixed $callback - * @return void - * @static - */ - public static function stopping($callback){ - \Illuminate\Queue\QueueManager::stopping($callback); - } - - /** - * Determine if the driver is connected. - * - * @param string $name - * @return bool - * @static - */ - public static function connected($name = null){ - return \Illuminate\Queue\QueueManager::connected($name); - } - - /** - * Resolve a queue connection instance. - * - * @param string $name - * @return \Illuminate\Queue\SyncQueue - * @static - */ - public static function connection($name = null){ - return \Illuminate\Queue\QueueManager::connection($name); - } - - /** - * Add a queue connection resolver. - * - * @param string $driver - * @param \Closure $resolver - * @return void - * @static - */ - public static function extend($driver, $resolver){ - \Illuminate\Queue\QueueManager::extend($driver, $resolver); - } - - /** - * Add a queue connection resolver. - * - * @param string $driver - * @param \Closure $resolver - * @return void - * @static - */ - public static function addConnector($driver, $resolver){ - \Illuminate\Queue\QueueManager::addConnector($driver, $resolver); - } - - /** - * Get the name of the default queue connection. - * - * @return string - * @static - */ - public static function getDefaultDriver(){ - return \Illuminate\Queue\QueueManager::getDefaultDriver(); - } - - /** - * Set the name of the default queue connection. - * - * @param string $name - * @return void - * @static - */ - public static function setDefaultDriver($name){ - \Illuminate\Queue\QueueManager::setDefaultDriver($name); - } - - /** - * Get the full name for the given connection. - * - * @param string $connection - * @return string - * @static - */ - public static function getName($connection = null){ - return \Illuminate\Queue\QueueManager::getName($connection); - } - - /** - * Determine if the application is in maintenance mode. - * - * @return bool - * @static - */ - public static function isDownForMaintenance(){ - return \Illuminate\Queue\QueueManager::isDownForMaintenance(); - } - - /** - * Push a new job onto the queue. - * - * @param string $job - * @param mixed $data - * @param string $queue - * @return mixed - * @static - */ - public static function push($job, $data = '', $queue = null){ - return \Illuminate\Queue\SyncQueue::push($job, $data, $queue); - } - - /** - * Push a raw payload onto the queue. - * - * @param string $payload - * @param string $queue - * @param array $options - * @return mixed - * @static - */ - public static function pushRaw($payload, $queue = null, $options = array()){ - return \Illuminate\Queue\SyncQueue::pushRaw($payload, $queue, $options); - } - - /** - * Push a new job onto the queue after a delay. - * - * @param \DateTime|int $delay - * @param string $job - * @param mixed $data - * @param string $queue - * @return mixed - * @static - */ - public static function later($delay, $job, $data = '', $queue = null){ - return \Illuminate\Queue\SyncQueue::later($delay, $job, $data, $queue); - } - - /** - * Pop the next job off of the queue. - * - * @param string $queue - * @return \Illuminate\Queue\Jobs\Job|null - * @static - */ - public static function pop($queue = null){ - return \Illuminate\Queue\SyncQueue::pop($queue); - } - - /** - * Marshal a push queue request and fire the job. - * - * @throws \RuntimeException - * @static - */ - public static function marshal(){ - //Method inherited from \Illuminate\Queue\Queue - return \Illuminate\Queue\SyncQueue::marshal(); - } - - /** - * Push an array of jobs onto the queue. - * - * @param array $jobs - * @param mixed $data - * @param string $queue - * @return mixed - * @static - */ - public static function bulk($jobs, $data = '', $queue = null){ - //Method inherited from \Illuminate\Queue\Queue - return \Illuminate\Queue\SyncQueue::bulk($jobs, $data, $queue); - } - - /** - * Get the current UNIX timestamp. - * - * @return int - * @static - */ - public static function getTime(){ - //Method inherited from \Illuminate\Queue\Queue - return \Illuminate\Queue\SyncQueue::getTime(); - } - - /** - * Set the IoC container instance. - * - * @param \Illuminate\Container\Container $container - * @return void - * @static - */ - public static function setContainer($container){ - //Method inherited from \Illuminate\Queue\Queue - \Illuminate\Queue\SyncQueue::setContainer($container); - } - - /** - * Set the encrypter instance. - * - * @param \Illuminate\Encryption\Encrypter $crypt - * @return void - * @static - */ - public static function setEncrypter($crypt){ - //Method inherited from \Illuminate\Queue\Queue - \Illuminate\Queue\SyncQueue::setEncrypter($crypt); - } - - } - - - class Redirect extends \Illuminate\Support\Facades\Redirect{ - - /** - * Create a new redirect response to the "home" route. - * - * @param int $status - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function home($status = 302){ - return \Illuminate\Routing\Redirector::home($status); - } - - /** - * Create a new redirect response to the previous location. - * - * @param int $status - * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function back($status = 302, $headers = array()){ - return \Illuminate\Routing\Redirector::back($status, $headers); - } - - /** - * Create a new redirect response to the current URI. - * - * @param int $status - * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function refresh($status = 302, $headers = array()){ - return \Illuminate\Routing\Redirector::refresh($status, $headers); - } - - /** - * Create a new redirect response, while putting the current URL in the session. - * - * @param string $path - * @param int $status - * @param array $headers - * @param bool $secure - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function guest($path, $status = 302, $headers = array(), $secure = null){ - return \Illuminate\Routing\Redirector::guest($path, $status, $headers, $secure); - } - - /** - * Create a new redirect response to the previously intended location. - * - * @param string $default - * @param int $status - * @param array $headers - * @param bool $secure - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function intended($default = '/', $status = 302, $headers = array(), $secure = null){ - return \Illuminate\Routing\Redirector::intended($default, $status, $headers, $secure); - } - - /** - * Create a new redirect response to the given path. - * - * @param string $path - * @param int $status - * @param array $headers - * @param bool $secure - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function to($path, $status = 302, $headers = array(), $secure = null){ - return \Illuminate\Routing\Redirector::to($path, $status, $headers, $secure); - } - - /** - * Create a new redirect response to an external URL (no validation). - * - * @param string $path - * @param int $status - * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function away($path, $status = 302, $headers = array()){ - return \Illuminate\Routing\Redirector::away($path, $status, $headers); - } - - /** - * Create a new redirect response to the given HTTPS path. - * - * @param string $path - * @param int $status - * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function secure($path, $status = 302, $headers = array()){ - return \Illuminate\Routing\Redirector::secure($path, $status, $headers); - } - - /** - * Create a new redirect response to a named route. - * - * @param string $route - * @param array $parameters - * @param int $status - * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function route($route, $parameters = array(), $status = 302, $headers = array()){ - return \Illuminate\Routing\Redirector::route($route, $parameters, $status, $headers); - } - - /** - * Create a new redirect response to a controller action. - * - * @param string $action - * @param array $parameters - * @param int $status - * @param array $headers - * @return \Illuminate\Http\RedirectResponse - * @static - */ - public static function action($action, $parameters = array(), $status = 302, $headers = array()){ - return \Illuminate\Routing\Redirector::action($action, $parameters, $status, $headers); - } - - /** - * Get the URL generator instance. - * - * @return \Illuminate\Routing\UrlGenerator - * @static - */ - public static function getUrlGenerator(){ - return \Illuminate\Routing\Redirector::getUrlGenerator(); - } - - /** - * Set the active session store. - * - * @param \Illuminate\Session\Store $session - * @return void - * @static - */ - public static function setSession($session){ - \Illuminate\Routing\Redirector::setSession($session); - } - - } - - - class Redis extends \Illuminate\Support\Facades\Redis{ - - /** - * Get a specific Redis connection instance. - * - * @param string $name - * @return \Predis\ClientInterface - * @static - */ - public static function connection($name = 'default'){ - return \Illuminate\Redis\Database::connection($name); - } - - /** - * Run a command against the Redis database. - * - * @param string $method - * @param array $parameters - * @return mixed - * @static - */ - public static function command($method, $parameters = array()){ - return \Illuminate\Redis\Database::command($method, $parameters); - } - - } - - - class Request extends \Illuminate\Support\Facades\Request{ - - /** - * Return the Request instance. - * - * @return $this - * @static - */ - public static function instance(){ - return \Illuminate\Http\Request::instance(); - } - - /** - * Get the request method. - * - * @return string - * @static - */ - public static function method(){ - return \Illuminate\Http\Request::method(); - } - - /** - * Get the root URL for the application. - * - * @return string - * @static - */ - public static function root(){ - return \Illuminate\Http\Request::root(); - } - - /** - * Get the URL (no query string) for the request. - * - * @return string - * @static - */ - public static function url(){ - return \Illuminate\Http\Request::url(); - } - - /** - * Get the full URL for the request. - * - * @return string - * @static - */ - public static function fullUrl(){ - return \Illuminate\Http\Request::fullUrl(); - } - - /** - * Get the current path info for the request. - * - * @return string - * @static - */ - public static function path(){ - return \Illuminate\Http\Request::path(); - } - - /** - * Get the current encoded path info for the request. - * - * @return string - * @static - */ - public static function decodedPath(){ - return \Illuminate\Http\Request::decodedPath(); - } - - /** - * Get a segment from the URI (1 based index). - * - * @param string $index - * @param mixed $default - * @return string - * @static - */ - public static function segment($index, $default = null){ - return \Illuminate\Http\Request::segment($index, $default); - } - - /** - * Get all of the segments for the request path. - * - * @return array - * @static - */ - public static function segments(){ - return \Illuminate\Http\Request::segments(); - } - - /** - * Determine if the current request URI matches a pattern. - * - * @param mixed string - * @return bool - * @static - */ - public static function is(){ - return \Illuminate\Http\Request::is(); - } - - /** - * Determine if the request is the result of an AJAX call. - * - * @return bool - * @static - */ - public static function ajax(){ - return \Illuminate\Http\Request::ajax(); - } - - /** - * Determine if the request is over HTTPS. - * - * @return bool - * @static - */ - public static function secure(){ - return \Illuminate\Http\Request::secure(); - } - - /** - * Returns the client IP address. - * - * @return string - * @static - */ - public static function ip(){ - return \Illuminate\Http\Request::ip(); - } - - /** - * Returns the client IP addresses. - * - * @return array - * @static - */ - public static function ips(){ - return \Illuminate\Http\Request::ips(); - } - - /** - * Determine if the request contains a given input item key. - * - * @param string|array $key - * @return bool - * @static - */ - public static function exists($key){ - return \Illuminate\Http\Request::exists($key); - } - - /** - * Determine if the request contains a non-empty value for an input item. - * - * @param string|array $key - * @return bool - * @static - */ - public static function has($key){ - return \Illuminate\Http\Request::has($key); - } - - /** - * Get all of the input and files for the request. - * - * @return array - * @static - */ - public static function all(){ - return \Illuminate\Http\Request::all(); - } - - /** - * Retrieve an input item from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function input($key = null, $default = null){ - return \Illuminate\Http\Request::input($key, $default); - } - - /** - * Get a subset of the items from the input data. - * - * @param array $keys - * @return array - * @static - */ - public static function only($keys){ - return \Illuminate\Http\Request::only($keys); - } - - /** - * Get all of the input except for a specified array of items. - * - * @param array $keys - * @return array - * @static - */ - public static function except($keys){ - return \Illuminate\Http\Request::except($keys); - } - - /** - * Retrieve a query string item from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function query($key = null, $default = null){ - return \Illuminate\Http\Request::query($key, $default); - } - - /** - * Determine if a cookie is set on the request. - * - * @param string $key - * @return bool - * @static - */ - public static function hasCookie($key){ - return \Illuminate\Http\Request::hasCookie($key); - } - - /** - * Retrieve a cookie from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function cookie($key = null, $default = null){ - return \Illuminate\Http\Request::cookie($key, $default); - } - - /** - * Retrieve a file from the request. - * - * @param string $key - * @param mixed $default - * @return \Symfony\Component\HttpFoundation\File\UploadedFile|array - * @static - */ - public static function file($key = null, $default = null){ - return \Illuminate\Http\Request::file($key, $default); - } - - /** - * Determine if the uploaded data contains a file. - * - * @param string $key - * @return bool - * @static - */ - public static function hasFile($key){ - return \Illuminate\Http\Request::hasFile($key); - } - - /** - * Retrieve a header from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function header($key = null, $default = null){ - return \Illuminate\Http\Request::header($key, $default); - } - - /** - * Retrieve a server variable from the request. - * - * @param string $key - * @param mixed $default - * @return string - * @static - */ - public static function server($key = null, $default = null){ - return \Illuminate\Http\Request::server($key, $default); - } - - /** - * Retrieve an old input item. - * - * @param string $key - * @param mixed $default - * @return mixed - * @static - */ - public static function old($key = null, $default = null){ - return \Illuminate\Http\Request::old($key, $default); - } - - /** - * Flash the input for the current request to the session. - * - * @param string $filter - * @param array $keys - * @return void - * @static - */ - public static function flash($filter = null, $keys = array()){ - \Illuminate\Http\Request::flash($filter, $keys); - } - - /** - * Flash only some of the input to the session. - * - * @param mixed string - * @return void - * @static - */ - public static function flashOnly($keys){ - \Illuminate\Http\Request::flashOnly($keys); - } - - /** - * Flash only some of the input to the session. - * - * @param mixed string - * @return void - * @static - */ - public static function flashExcept($keys){ - \Illuminate\Http\Request::flashExcept($keys); - } - - /** - * Flush all of the old input from the session. - * - * @return void - * @static - */ - public static function flush(){ - \Illuminate\Http\Request::flush(); - } - - /** - * Merge new input into the current request's input array. - * - * @param array $input - * @return void - * @static - */ - public static function merge($input){ - \Illuminate\Http\Request::merge($input); - } - - /** - * Replace the input for the current request. - * - * @param array $input - * @return void - * @static - */ - public static function replace($input){ - \Illuminate\Http\Request::replace($input); - } - - /** - * Get the JSON payload for the request. - * - * @param string $key - * @param mixed $default - * @return mixed - * @static - */ - public static function json($key = null, $default = null){ - return \Illuminate\Http\Request::json($key, $default); - } - - /** - * Determine if the request is sending JSON. - * - * @return bool - * @static - */ - public static function isJson(){ - return \Illuminate\Http\Request::isJson(); - } - - /** - * Determine if the current request is asking for JSON in return. - * - * @return bool - * @static - */ - public static function wantsJson(){ - return \Illuminate\Http\Request::wantsJson(); - } - - /** - * Get the data format expected in the response. - * - * @param string $default - * @return string - * @static - */ - public static function format($default = 'html'){ - return \Illuminate\Http\Request::format($default); - } - - /** - * Create an Illuminate request from a Symfony instance. - * - * @param \Symfony\Component\HttpFoundation\Request $request - * @return \Illuminate\Http\Request - * @static - */ - public static function createFromBase($request){ - return \Illuminate\Http\Request::createFromBase($request); - } - - /** - * Get the session associated with the request. - * - * @return \Illuminate\Session\Store - * @throws \RuntimeException - * @static - */ - public static function session(){ - return \Illuminate\Http\Request::session(); - } - - /** - * Sets the parameters for this request. - * - * This method also re-initializes all properties. - * - * @param array $query The GET parameters - * @param array $request The POST parameters - * @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) - * @param array $cookies The COOKIE parameters - * @param array $files The FILES parameters - * @param array $server The SERVER parameters - * @param string $content The raw body data - * @api - * @static - */ - public static function initialize($query = array(), $request = array(), $attributes = array(), $cookies = array(), $files = array(), $server = array(), $content = null){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::initialize($query, $request, $attributes, $cookies, $files, $server, $content); - } - - /** - * Creates a new request with values from PHP's super globals. - * - * @return \Symfony\Component\HttpFoundation\Request A new request - * @api - * @static - */ - public static function createFromGlobals(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::createFromGlobals(); - } - - /** - * Creates a Request based on a given URI and configuration. - * - * The information contained in the URI always take precedence - * over the other information (server and parameters). - * - * @param string $uri The URI - * @param string $method The HTTP method - * @param array $parameters The query (GET) or request (POST) parameters - * @param array $cookies The request cookies ($_COOKIE) - * @param array $files The request files ($_FILES) - * @param array $server The server parameters ($_SERVER) - * @param string $content The raw body data - * @return \Symfony\Component\HttpFoundation\Request A Request instance - * @api - * @static - */ - public static function create($uri, $method = 'GET', $parameters = array(), $cookies = array(), $files = array(), $server = array(), $content = null){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::create($uri, $method, $parameters, $cookies, $files, $server, $content); - } - - /** - * Sets a callable able to create a Request instance. - * - * This is mainly useful when you need to override the Request class - * to keep BC with an existing system. It should not be used for any - * other purpose. - * - * @param callable|null $callable A PHP callable - * @static - */ - public static function setFactory($callable){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setFactory($callable); - } - - /** - * Clones a request and overrides some of its parameters. - * - * @param array $query The GET parameters - * @param array $request The POST parameters - * @param array $attributes The request attributes (parameters parsed from the PATH_INFO, ...) - * @param array $cookies The COOKIE parameters - * @param array $files The FILES parameters - * @param array $server The SERVER parameters - * @return \Symfony\Component\HttpFoundation\Request The duplicated request - * @api - * @static - */ - public static function duplicate($query = null, $request = null, $attributes = null, $cookies = null, $files = null, $server = null){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::duplicate($query, $request, $attributes, $cookies, $files, $server); - } - - /** - * Overrides the PHP global variables according to this request instance. - * - * It overrides $_GET, $_POST, $_REQUEST, $_SERVER, $_COOKIE. - * $_FILES is never overridden, see rfc1867 - * - * @api - * @static - */ - public static function overrideGlobals(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::overrideGlobals(); - } - - /** - * Sets a list of trusted proxies. - * - * You should only list the reverse proxies that you manage directly. - * - * @param array $proxies A list of trusted proxies - * @api - * @static - */ - public static function setTrustedProxies($proxies){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setTrustedProxies($proxies); - } - - /** - * Gets the list of trusted proxies. - * - * @return array An array of trusted proxies. - * @static - */ - public static function getTrustedProxies(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getTrustedProxies(); - } - - /** - * Sets a list of trusted host patterns. - * - * You should only list the hosts you manage using regexs. - * - * @param array $hostPatterns A list of trusted host patterns - * @static - */ - public static function setTrustedHosts($hostPatterns){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setTrustedHosts($hostPatterns); - } - - /** - * Gets the list of trusted host patterns. - * - * @return array An array of trusted host patterns. - * @static - */ - public static function getTrustedHosts(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getTrustedHosts(); - } - - /** - * Sets the name for trusted headers. - * - * The following header keys are supported: - * - * * Request::HEADER_CLIENT_IP: defaults to X-Forwarded-For (see getClientIp()) - * * Request::HEADER_CLIENT_HOST: defaults to X-Forwarded-Host (see getClientHost()) - * * Request::HEADER_CLIENT_PORT: defaults to X-Forwarded-Port (see getClientPort()) - * * Request::HEADER_CLIENT_PROTO: defaults to X-Forwarded-Proto (see getScheme() and isSecure()) - * - * Setting an empty value allows to disable the trusted header for the given key. - * - * @param string $key The header key - * @param string $value The header name - * @throws \InvalidArgumentException - * @static - */ - public static function setTrustedHeaderName($key, $value){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setTrustedHeaderName($key, $value); - } - - /** - * Gets the trusted proxy header name. - * - * @param string $key The header key - * @return string The header name - * @throws \InvalidArgumentException - * @static - */ - public static function getTrustedHeaderName($key){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getTrustedHeaderName($key); - } - - /** - * Normalizes a query string. - * - * It builds a normalized query string, where keys/value pairs are alphabetized, - * have consistent escaping and unneeded delimiters are removed. - * - * @param string $qs Query string - * @return string A normalized query string for the Request - * @static - */ - public static function normalizeQueryString($qs){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::normalizeQueryString($qs); - } - - /** - * Enables support for the _method request parameter to determine the intended HTTP method. - * - * Be warned that enabling this feature might lead to CSRF issues in your code. - * Check that you are using CSRF tokens when required. - * If the HTTP method parameter override is enabled, an html-form with method "POST" can be altered - * and used to send a "PUT" or "DELETE" request via the _method request parameter. - * If these methods are not protected against CSRF, this presents a possible vulnerability. - * - * The HTTP method can only be overridden when the real HTTP method is POST. - * - * @static - */ - public static function enableHttpMethodParameterOverride(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::enableHttpMethodParameterOverride(); - } - - /** - * Checks whether support for the _method request parameter is enabled. - * - * @return bool True when the _method request parameter is enabled, false otherwise - * @static - */ - public static function getHttpMethodParameterOverride(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getHttpMethodParameterOverride(); - } - - /** - * Gets a "parameter" value. - * - * This method is mainly useful for libraries that want to provide some flexibility. - * - * Order of precedence: GET, PATH, POST - * - * Avoid using this method in controllers: - * - * * slow - * * prefer to get from a "named" source - * - * It is better to explicitly get request parameters from the appropriate - * public property instead (query, attributes, request). - * - * @param string $key the key - * @param mixed $default the default value - * @param bool $deep is parameter deep in multidimensional array - * @return mixed - * @static - */ - public static function get($key, $default = null, $deep = false){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::get($key, $default, $deep); - } - - /** - * Gets the Session. - * - * @return \Symfony\Component\HttpFoundation\SessionInterface|null The session - * @api - * @static - */ - public static function getSession(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getSession(); - } - - /** - * Whether the request contains a Session which was started in one of the - * previous requests. - * - * @return bool - * @api - * @static - */ - public static function hasPreviousSession(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::hasPreviousSession(); - } - - /** - * Whether the request contains a Session object. - * - * This method does not give any information about the state of the session object, - * like whether the session is started or not. It is just a way to check if this Request - * is associated with a Session instance. - * - * @return bool true when the Request contains a Session object, false otherwise - * @api - * @static - */ - public static function hasSession(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::hasSession(); - } - - /** - * Sets the Session. - * - * @param \Symfony\Component\HttpFoundation\SessionInterface $session The Session - * @api - * @static - */ - public static function setSession($session){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setSession($session); - } - - /** - * Returns the client IP addresses. - * - * In the returned array the most trusted IP address is first, and the - * least trusted one last. The "real" client IP address is the last one, - * but this is also the least trusted one. Trusted proxies are stripped. - * - * Use this method carefully; you should use getClientIp() instead. - * - * @return array The client IP addresses - * @see getClientIp() - * @static - */ - public static function getClientIps(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getClientIps(); - } - - /** - * Returns the client IP address. - * - * This method can read the client IP address from the "X-Forwarded-For" header - * when trusted proxies were set via "setTrustedProxies()". The "X-Forwarded-For" - * header value is a comma+space separated list of IP addresses, the left-most - * being the original client, and each successive proxy that passed the request - * adding the IP address where it received the request from. - * - * If your reverse proxy uses a different header name than "X-Forwarded-For", - * ("Client-Ip" for instance), configure it via "setTrustedHeaderName()" with - * the "client-ip" key. - * - * @return string The client IP address - * @see getClientIps() - * @see http://en.wikipedia.org/wiki/X-Forwarded-For - * @api - * @static - */ - public static function getClientIp(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getClientIp(); - } - - /** - * Returns current script name. - * - * @return string - * @api - * @static - */ - public static function getScriptName(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getScriptName(); - } - - /** - * Returns the path being requested relative to the executed script. - * - * The path info always starts with a /. - * - * Suppose this request is instantiated from /mysite on localhost: - * - * * http://localhost/mysite returns an empty string - * * http://localhost/mysite/about returns '/about' - * * http://localhost/mysite/enco%20ded returns '/enco%20ded' - * * http://localhost/mysite/about?var=1 returns '/about' - * - * @return string The raw path (i.e. not urldecoded) - * @api - * @static - */ - public static function getPathInfo(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getPathInfo(); - } - - /** - * Returns the root path from which this request is executed. - * - * Suppose that an index.php file instantiates this request object: - * - * * http://localhost/index.php returns an empty string - * * http://localhost/index.php/page returns an empty string - * * http://localhost/web/index.php returns '/web' - * * http://localhost/we%20b/index.php returns '/we%20b' - * - * @return string The raw path (i.e. not urldecoded) - * @api - * @static - */ - public static function getBasePath(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getBasePath(); - } - - /** - * Returns the root URL from which this request is executed. - * - * The base URL never ends with a /. - * - * This is similar to getBasePath(), except that it also includes the - * script filename (e.g. index.php) if one exists. - * - * @return string The raw URL (i.e. not urldecoded) - * @api - * @static - */ - public static function getBaseUrl(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getBaseUrl(); - } - - /** - * Gets the request's scheme. - * - * @return string - * @api - * @static - */ - public static function getScheme(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getScheme(); - } - - /** - * Returns the port on which the request is made. - * - * This method can read the client port from the "X-Forwarded-Port" header - * when trusted proxies were set via "setTrustedProxies()". - * - * The "X-Forwarded-Port" header must contain the client port. - * - * If your reverse proxy uses a different header name than "X-Forwarded-Port", - * configure it via "setTrustedHeaderName()" with the "client-port" key. - * - * @return string - * @api - * @static - */ - public static function getPort(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getPort(); - } - - /** - * Returns the user. - * - * @return string|null - * @static - */ - public static function getUser(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getUser(); - } - - /** - * Returns the password. - * - * @return string|null - * @static - */ - public static function getPassword(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getPassword(); - } - - /** - * Gets the user info. - * - * @return string A user name and, optionally, scheme-specific information about how to gain authorization to access the server - * @static - */ - public static function getUserInfo(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getUserInfo(); - } - - /** - * Returns the HTTP host being requested. - * - * The port name will be appended to the host if it's non-standard. - * - * @return string - * @api - * @static - */ - public static function getHttpHost(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getHttpHost(); - } - - /** - * Returns the requested URI (path and query string). - * - * @return string The raw URI (i.e. not URI decoded) - * @api - * @static - */ - public static function getRequestUri(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getRequestUri(); - } - - /** - * Gets the scheme and HTTP host. - * - * If the URL was called with basic authentication, the user - * and the password are not added to the generated string. - * - * @return string The scheme and HTTP host - * @static - */ - public static function getSchemeAndHttpHost(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getSchemeAndHttpHost(); - } - - /** - * Generates a normalized URI (URL) for the Request. - * - * @return string A normalized URI (URL) for the Request - * @see getQueryString() - * @api - * @static - */ - public static function getUri(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getUri(); - } - - /** - * Generates a normalized URI for the given path. - * - * @param string $path A path to use instead of the current one - * @return string The normalized URI for the path - * @api - * @static - */ - public static function getUriForPath($path){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getUriForPath($path); - } - - /** - * Generates the normalized query string for the Request. - * - * It builds a normalized query string, where keys/value pairs are alphabetized - * and have consistent escaping. - * - * @return string|null A normalized query string for the Request - * @api - * @static - */ - public static function getQueryString(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getQueryString(); - } - - /** - * Checks whether the request is secure or not. - * - * This method can read the client port from the "X-Forwarded-Proto" header - * when trusted proxies were set via "setTrustedProxies()". - * - * The "X-Forwarded-Proto" header must contain the protocol: "https" or "http". - * - * If your reverse proxy uses a different header name than "X-Forwarded-Proto" - * ("SSL_HTTPS" for instance), configure it via "setTrustedHeaderName()" with - * the "client-proto" key. - * - * @return bool - * @api - * @static - */ - public static function isSecure(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::isSecure(); - } - - /** - * Returns the host name. - * - * This method can read the client port from the "X-Forwarded-Host" header - * when trusted proxies were set via "setTrustedProxies()". - * - * The "X-Forwarded-Host" header must contain the client host name. - * - * If your reverse proxy uses a different header name than "X-Forwarded-Host", - * configure it via "setTrustedHeaderName()" with the "client-host" key. - * - * @return string - * @throws \UnexpectedValueException when the host name is invalid - * @api - * @static - */ - public static function getHost(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getHost(); - } - - /** - * Sets the request method. - * - * @param string $method - * @api - * @static - */ - public static function setMethod($method){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setMethod($method); - } - - /** - * Gets the request "intended" method. - * - * If the X-HTTP-Method-Override header is set, and if the method is a POST, - * then it is used to determine the "real" intended HTTP method. - * - * The _method request parameter can also be used to determine the HTTP method, - * but only if enableHttpMethodParameterOverride() has been called. - * - * The method is always an uppercased string. - * - * @return string The request method - * @api - * @see getRealMethod() - * @static - */ - public static function getMethod(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getMethod(); - } - - /** - * Gets the "real" request method. - * - * @return string The request method - * @see getMethod() - * @static - */ - public static function getRealMethod(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getRealMethod(); - } - - /** - * Gets the mime type associated with the format. - * - * @param string $format The format - * @return string The associated mime type (null if not found) - * @api - * @static - */ - public static function getMimeType($format){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getMimeType($format); - } - - /** - * Gets the format associated with the mime type. - * - * @param string $mimeType The associated mime type - * @return string|null The format (null if not found) - * @api - * @static - */ - public static function getFormat($mimeType){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getFormat($mimeType); - } - - /** - * Associates a format with mime types. - * - * @param string $format The format - * @param string|array $mimeTypes The associated mime types (the preferred one must be the first as it will be used as the content type) - * @api - * @static - */ - public static function setFormat($format, $mimeTypes){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setFormat($format, $mimeTypes); - } - - /** - * Gets the request format. - * - * Here is the process to determine the format: - * - * * format defined by the user (with setRequestFormat()) - * * _format request parameter - * * $default - * - * @param string $default The default format - * @return string The request format - * @api - * @static - */ - public static function getRequestFormat($default = 'html'){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getRequestFormat($default); - } - - /** - * Sets the request format. - * - * @param string $format The request format. - * @api - * @static - */ - public static function setRequestFormat($format){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setRequestFormat($format); - } - - /** - * Gets the format associated with the request. - * - * @return string|null The format (null if no content type is present) - * @api - * @static - */ - public static function getContentType(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getContentType(); - } - - /** - * Sets the default locale. - * - * @param string $locale - * @api - * @static - */ - public static function setDefaultLocale($locale){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setDefaultLocale($locale); - } - - /** - * Get the default locale. - * - * @return string - * @static - */ - public static function getDefaultLocale(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getDefaultLocale(); - } - - /** - * Sets the locale. - * - * @param string $locale - * @api - * @static - */ - public static function setLocale($locale){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::setLocale($locale); - } - - /** - * Get the locale. - * - * @return string - * @static - */ - public static function getLocale(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getLocale(); - } - - /** - * Checks if the request method is of specified type. - * - * @param string $method Uppercase request method (GET, POST etc). - * @return bool - * @static - */ - public static function isMethod($method){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::isMethod($method); - } - - /** - * Checks whether the method is safe or not. - * - * @return bool - * @api - * @static - */ - public static function isMethodSafe(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::isMethodSafe(); - } - - /** - * Returns the request body content. - * - * @param bool $asResource If true, a resource will be returned - * @return string|resource The request body content or a resource to read the body stream. - * @throws \LogicException - * @static - */ - public static function getContent($asResource = false){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getContent($asResource); - } - - /** - * Gets the Etags. - * - * @return array The entity tags - * @static - */ - public static function getETags(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getETags(); - } - - /** - * - * - * @return bool - * @static - */ - public static function isNoCache(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::isNoCache(); - } - - /** - * Returns the preferred language. - * - * @param array $locales An array of ordered available locales - * @return string|null The preferred locale - * @api - * @static - */ - public static function getPreferredLanguage($locales = null){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getPreferredLanguage($locales); - } - - /** - * Gets a list of languages acceptable by the client browser. - * - * @return array Languages ordered in the user browser preferences - * @api - * @static - */ - public static function getLanguages(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getLanguages(); - } - - /** - * Gets a list of charsets acceptable by the client browser. - * - * @return array List of charsets in preferable order - * @api - * @static - */ - public static function getCharsets(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getCharsets(); - } - - /** - * Gets a list of encodings acceptable by the client browser. - * - * @return array List of encodings in preferable order - * @static - */ - public static function getEncodings(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getEncodings(); - } - - /** - * Gets a list of content types acceptable by the client browser. - * - * @return array List of content types in preferable order - * @api - * @static - */ - public static function getAcceptableContentTypes(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::getAcceptableContentTypes(); - } - - /** - * Returns true if the request is a XMLHttpRequest. - * - * It works if your JavaScript library sets an X-Requested-With HTTP header. - * It is known to work with common JavaScript frameworks: - * - * @link http://en.wikipedia.org/wiki/List_of_Ajax_frameworks#JavaScript - * @return bool true if the request is an XMLHttpRequest, false otherwise - * @api - * @static - */ - public static function isXmlHttpRequest(){ - //Method inherited from \Symfony\Component\HttpFoundation\Request - return \Illuminate\Http\Request::isXmlHttpRequest(); - } - - } - - - class Response extends \Illuminate\Support\Facades\Response{ - - } - - - class Route extends \Illuminate\Support\Facades\Route{ - - /** - * Register an API group. - * - * @param array|string $options - * @param callable $callback - * @throws \BadMethodCallException - * @return void - * @static - */ - public static function api($options, $callback){ - \Dingo\Api\Routing\Router::api($options, $callback); - } - - /** - * Add an existing collection of routes. - * - * @param \Illuminate\Routing\RouteCollection $routes - * @return void - * @static - */ - public static function addExistingRoutes($routes){ - \Dingo\Api\Routing\Router::addExistingRoutes($routes); - } - - /** - * Dispatch the request to the application and return either a regular response - * or an API response. - * - * @param \Illuminate\Http\Request $request - * @param bool $morph - * @throws \Exception - * @return \Illuminate\Http\Response|\Dingo\Api\Http\Response - * @static - */ - public static function dispatch($request, $morph = true){ - return \Dingo\Api\Routing\Router::dispatch($request, $morph); - } - - /** - * Determine if the request is an API request. - * - * @param \Illuminate\Http\Request $request - * @return bool - * @static - */ - public static function isApiRequest($request){ - return \Dingo\Api\Routing\Router::isApiRequest($request); - } - - /** - * Get the current API format. - * - * @return string - * @static - */ - public static function getCurrentFormat(){ - return \Dingo\Api\Routing\Router::getCurrentFormat(); - } - - /** - * Get the current API version. - * - * @return string - * @static - */ - public static function getCurrentVersion(){ - return \Dingo\Api\Routing\Router::getCurrentVersion(); - } - - /** - * Get a controller inspector instance. - * - * @return \Dingo\Api\Routing\ControllerInspector - * @static - */ - public static function getInspector(){ - return \Dingo\Api\Routing\Router::getInspector(); - } - - /** - * Set the current request. - * - * @param \Illuminate\Http\Request $request - * @return void - * @static - */ - public static function setCurrentRequest($request){ - \Dingo\Api\Routing\Router::setCurrentRequest($request); - } - - /** - * Set the current route. - * - * @param \Illuminate\Routing\Route $route - * @return void - * @static - */ - public static function setCurrentRoute($route){ - \Dingo\Api\Routing\Router::setCurrentRoute($route); - } - - /** - * Get the API groups collection containing the API routes. - * - * @return \Dingo\Api\Routing\GroupCollection - * @static - */ - public static function getApiGroups(){ - return \Dingo\Api\Routing\Router::getApiGroups(); - } - - /** - * Determine if conditional requests are enabled. - * - * @return string - * @static - */ - public static function requestsAreConditional(){ - return \Dingo\Api\Routing\Router::requestsAreConditional(); - } - - /** - * Enable or disable conditional requests. - * - * @param bool $conditionalRequest - * @return void - * @static - */ - public static function setConditionalRequest($conditionalRequest){ - \Dingo\Api\Routing\Router::setConditionalRequest($conditionalRequest); - } - - /** - * Determine if the request should be treated as strict. - * - * @return bool - * @static - */ - public static function isStrict(){ - return \Dingo\Api\Routing\Router::isStrict(); - } - - /** - * Enable or disable strict mode. - * - * @param bool $strict - * @return void - * @static - */ - public static function setStrict($strict){ - \Dingo\Api\Routing\Router::setStrict($strict); - } - - /** - * Register a new GET route with the router. - * - * @param string $uri - * @param \Closure|array|string $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function get($uri, $action){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::get($uri, $action); - } - - /** - * Register a new POST route with the router. - * - * @param string $uri - * @param \Closure|array|string $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function post($uri, $action){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::post($uri, $action); - } - - /** - * Register a new PUT route with the router. - * - * @param string $uri - * @param \Closure|array|string $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function put($uri, $action){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::put($uri, $action); - } - - /** - * Register a new PATCH route with the router. - * - * @param string $uri - * @param \Closure|array|string $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function patch($uri, $action){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::patch($uri, $action); - } - - /** - * Register a new DELETE route with the router. - * - * @param string $uri - * @param \Closure|array|string $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function delete($uri, $action){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::delete($uri, $action); - } - - /** - * Register a new OPTIONS route with the router. - * - * @param string $uri - * @param \Closure|array|string $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function options($uri, $action){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::options($uri, $action); - } - - /** - * Register a new route responding to all verbs. - * - * @param string $uri - * @param \Closure|array|string $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function any($uri, $action){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::any($uri, $action); - } - - /** - * Register a new route with the given verbs. - * - * @param array|string $methods - * @param string $uri - * @param \Closure|array|string $action - * @return \Illuminate\Routing\Route - * @static - */ - public static function match($methods, $uri, $action){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::match($methods, $uri, $action); - } - - /** - * Register an array of controllers with wildcard routing. - * - * @param array $controllers - * @return void - * @static - */ - public static function controllers($controllers){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::controllers($controllers); - } - - /** - * Route a controller to a URI with wildcard routing. - * - * @param string $uri - * @param string $controller - * @param array $names - * @return void - * @static - */ - public static function controller($uri, $controller, $names = array()){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::controller($uri, $controller, $names); - } - - /** - * Route a resource to a controller. - * - * @param string $name - * @param string $controller - * @param array $options - * @return void - * @static - */ - public static function resource($name, $controller, $options = array()){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::resource($name, $controller, $options); - } - - /** - * Get the base resource URI for a given resource. - * - * @param string $resource - * @return string - * @static - */ - public static function getResourceUri($resource){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::getResourceUri($resource); - } - - /** - * Format a resource wildcard for usage. - * - * @param string $value - * @return string - * @static - */ - public static function getResourceWildcard($value){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::getResourceWildcard($value); - } - - /** - * Create a route group with shared attributes. - * - * @param array $attributes - * @param \Closure $callback - * @return void - * @static - */ - public static function group($attributes, $callback){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::group($attributes, $callback); - } - - /** - * Merge the given array with the last group stack. - * - * @param array $new - * @return array - * @static - */ - public static function mergeWithLastGroup($new){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::mergeWithLastGroup($new); - } - - /** - * Merge the given group attributes. - * - * @param array $new - * @param array $old - * @return array - * @static - */ - public static function mergeGroup($new, $old){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::mergeGroup($new, $old); - } - - /** - * Dispatch the request to a route and return the response. - * - * @param \Illuminate\Http\Request $request - * @return mixed - * @static - */ - public static function dispatchToRoute($request){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::dispatchToRoute($request); - } - - /** - * Register a route matched event listener. - * - * @param string|callable $callback - * @return void - * @static - */ - public static function matched($callback){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::matched($callback); - } - - /** - * Register a new "before" filter with the router. - * - * @param string|callable $callback - * @return void - * @static - */ - public static function before($callback){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::before($callback); - } - - /** - * Register a new "after" filter with the router. - * - * @param string|callable $callback - * @return void - * @static - */ - public static function after($callback){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::after($callback); - } - - /** - * Register a new filter with the router. - * - * @param string $name - * @param string|callable $callback - * @return void - * @static - */ - public static function filter($name, $callback){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::filter($name, $callback); - } - - /** - * Register a pattern-based filter with the router. - * - * @param string $pattern - * @param string $name - * @param array|null $methods - * @return void - * @static - */ - public static function when($pattern, $name, $methods = null){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::when($pattern, $name, $methods); - } - - /** - * Register a regular expression based filter with the router. - * - * @param string $pattern - * @param string $name - * @param array|null $methods - * @return void - * @static - */ - public static function whenRegex($pattern, $name, $methods = null){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::whenRegex($pattern, $name, $methods); - } - - /** - * Register a model binder for a wildcard. - * - * @param string $key - * @param string $class - * @param \Closure $callback - * @return void - * @throws NotFoundHttpException - * @static - */ - public static function model($key, $class, $callback = null){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::model($key, $class, $callback); - } - - /** - * Add a new route parameter binder. - * - * @param string $key - * @param string|callable $binder - * @return void - * @static - */ - public static function bind($key, $binder){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::bind($key, $binder); - } - - /** - * Create a class based binding using the IoC container. - * - * @param string $binding - * @return \Closure - * @static - */ - public static function createClassBinding($binding){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::createClassBinding($binding); - } - - /** - * Set a global where pattern on all routes - * - * @param string $key - * @param string $pattern - * @return void - * @static - */ - public static function pattern($key, $pattern){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::pattern($key, $pattern); - } - - /** - * Set a group of global where patterns on all routes - * - * @param array $patterns - * @return void - * @static - */ - public static function patterns($patterns){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::patterns($patterns); - } - - /** - * Call the given route's before filters. - * - * @param \Illuminate\Routing\Route $route - * @param \Illuminate\Http\Request $request - * @return mixed - * @static - */ - public static function callRouteBefore($route, $request){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::callRouteBefore($route, $request); - } - - /** - * Find the patterned filters matching a request. - * - * @param \Illuminate\Http\Request $request - * @return array - * @static - */ - public static function findPatternFilters($request){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::findPatternFilters($request); - } - - /** - * Call the given route's before filters. - * - * @param \Illuminate\Routing\Route $route - * @param \Illuminate\Http\Request $request - * @param \Illuminate\Http\Response $response - * @return mixed - * @static - */ - public static function callRouteAfter($route, $request, $response){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::callRouteAfter($route, $request, $response); - } - - /** - * Call the given route filter. - * - * @param string $filter - * @param array $parameters - * @param \Illuminate\Routing\Route $route - * @param \Illuminate\Http\Request $request - * @param \Illuminate\Http\Response|null $response - * @return mixed - * @static - */ - public static function callRouteFilter($filter, $parameters, $route, $request, $response = null){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::callRouteFilter($filter, $parameters, $route, $request, $response); - } - - /** - * Run a callback with filters disable on the router. - * - * @param callable $callback - * @return void - * @static - */ - public static function withoutFilters($callback){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::withoutFilters($callback); - } - - /** - * Enable route filtering on the router. - * - * @return void - * @static - */ - public static function enableFilters(){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::enableFilters(); - } - - /** - * Disable route filtering on the router. - * - * @return void - * @static - */ - public static function disableFilters(){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::disableFilters(); - } - - /** - * Get a route parameter for the current route. - * - * @param string $key - * @param string $default - * @return mixed - * @static - */ - public static function input($key, $default = null){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::input($key, $default); - } - - /** - * Get the currently dispatched route instance. - * - * @return \Illuminate\Routing\Route - * @static - */ - public static function getCurrentRoute(){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::getCurrentRoute(); - } - - /** - * Get the currently dispatched route instance. - * - * @return \Illuminate\Routing\Route - * @static - */ - public static function current(){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::current(); - } - - /** - * Check if a route with the given name exists. - * - * @param string $name - * @return bool - * @static - */ - public static function has($name){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::has($name); - } - - /** - * Get the current route name. - * - * @return string|null - * @static - */ - public static function currentRouteName(){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::currentRouteName(); - } - - /** - * Alias for the "currentRouteNamed" method. - * - * @param mixed string - * @return bool - * @static - */ - public static function is(){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::is(); - } - - /** - * Determine if the current route matches a given name. - * - * @param string $name - * @return bool - * @static - */ - public static function currentRouteNamed($name){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::currentRouteNamed($name); - } - - /** - * Get the current route action. - * - * @return string|null - * @static - */ - public static function currentRouteAction(){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::currentRouteAction(); - } - - /** - * Alias for the "currentRouteUses" method. - * - * @param mixed string - * @return bool - * @static - */ - public static function uses(){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::uses(); - } - - /** - * Determine if the current route action matches a given action. - * - * @param string $action - * @return bool - * @static - */ - public static function currentRouteUses($action){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::currentRouteUses($action); - } - - /** - * Get the request currently being dispatched. - * - * @return \Illuminate\Http\Request - * @static - */ - public static function getCurrentRequest(){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::getCurrentRequest(); - } - - /** - * Get the underlying route collection. - * - * @return \Illuminate\Routing\RouteCollection - * @static - */ - public static function getRoutes(){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::getRoutes(); - } - - /** - * Get the controller dispatcher instance. - * - * @return \Illuminate\Routing\ControllerDispatcher - * @static - */ - public static function getControllerDispatcher(){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::getControllerDispatcher(); - } - - /** - * Set the controller dispatcher instance. - * - * @param \Illuminate\Routing\ControllerDispatcher $dispatcher - * @return void - * @static - */ - public static function setControllerDispatcher($dispatcher){ - //Method inherited from \Illuminate\Routing\Router - \Dingo\Api\Routing\Router::setControllerDispatcher($dispatcher); - } - - /** - * Get the global "where" patterns. - * - * @return array - * @static - */ - public static function getPatterns(){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::getPatterns(); - } - - /** - * Get the response for a given request. - * - * @param \Symfony\Component\HttpFoundation\Request $request - * @param int $type - * @param bool $catch - * @return \Illuminate\Http\Response - * @static - */ - public static function handle($request, $type = 1, $catch = true){ - //Method inherited from \Illuminate\Routing\Router - return \Dingo\Api\Routing\Router::handle($request, $type, $catch); - } - - } - - - class Schema extends \Illuminate\Support\Facades\Schema{ - - /** - * Determine if the given collection exists. - * - * @param string $collection - * @return bool - * @static - */ - public static function hasCollection($collection){ - return \Jenssegers\Mongodb\Schema\Builder::hasCollection($collection); - } - - /** - * Determine if the given collection exists. - * - * @param string $collection - * @return bool - * @static - */ - public static function hasTable($collection){ - return \Jenssegers\Mongodb\Schema\Builder::hasTable($collection); - } - - /** - * Modify a collection on the schema. - * - * @param string $collection - * @param \Closure $callback - * @return bool - * @static - */ - public static function collection($collection, $callback){ - return \Jenssegers\Mongodb\Schema\Builder::collection($collection, $callback); - } - - /** - * Modify a collection on the schema. - * - * @param string $collection - * @param \Closure $callback - * @return bool - * @static - */ - public static function table($collection, $callback){ - return \Jenssegers\Mongodb\Schema\Builder::table($collection, $callback); - } - - /** - * Create a new collection on the schema. - * - * @param string $collection - * @param \Closure $callback - * @return bool - * @static - */ - public static function create($collection, $callback = null){ - return \Jenssegers\Mongodb\Schema\Builder::create($collection, $callback); - } - - /** - * Drop a collection from the schema. - * - * @param string $collection - * @return bool - * @static - */ - public static function drop($collection){ - return \Jenssegers\Mongodb\Schema\Builder::drop($collection); - } - - /** - * Determine if the given table has a given column. - * - * @param string $table - * @param string $column - * @return bool - * @static - */ - public static function hasColumn($table, $column){ - //Method inherited from \Illuminate\Database\Schema\Builder - return \Jenssegers\Mongodb\Schema\Builder::hasColumn($table, $column); - } - - /** - * Get the column listing for a given table. - * - * @param string $table - * @return array - * @static - */ - public static function getColumnListing($table){ - //Method inherited from \Illuminate\Database\Schema\Builder - return \Jenssegers\Mongodb\Schema\Builder::getColumnListing($table); - } - - /** - * Drop a table from the schema if it exists. - * - * @param string $table - * @return \Illuminate\Database\Schema\Blueprint - * @static - */ - public static function dropIfExists($table){ - //Method inherited from \Illuminate\Database\Schema\Builder - return \Jenssegers\Mongodb\Schema\Builder::dropIfExists($table); - } - - /** - * Rename a table on the schema. - * - * @param string $from - * @param string $to - * @return \Illuminate\Database\Schema\Blueprint - * @static - */ - public static function rename($from, $to){ - //Method inherited from \Illuminate\Database\Schema\Builder - return \Jenssegers\Mongodb\Schema\Builder::rename($from, $to); - } - - /** - * Get the database connection instance. - * - * @return \Illuminate\Database\Connection - * @static - */ - public static function getConnection(){ - //Method inherited from \Illuminate\Database\Schema\Builder - return \Jenssegers\Mongodb\Schema\Builder::getConnection(); - } - - /** - * Set the database connection instance. - * - * @param \Illuminate\Database\Connection - * @return $this - * @static - */ - public static function setConnection($connection){ - //Method inherited from \Illuminate\Database\Schema\Builder - return \Jenssegers\Mongodb\Schema\Builder::setConnection($connection); - } - - /** - * Set the Schema Blueprint resolver callback. - * - * @param \Closure $resolver - * @return void - * @static - */ - public static function blueprintResolver($resolver){ - //Method inherited from \Illuminate\Database\Schema\Builder - \Jenssegers\Mongodb\Schema\Builder::blueprintResolver($resolver); - } - - } - - - class Seeder extends \Illuminate\Database\Seeder{ - - } - - - class Session extends \Illuminate\Support\Facades\Session{ - - /** - * Get the session configuration. - * - * @return array - * @static - */ - public static function getSessionConfig(){ - return \Illuminate\Session\SessionManager::getSessionConfig(); - } - - /** - * Get the default session driver name. - * - * @return string - * @static - */ - public static function getDefaultDriver(){ - return \Illuminate\Session\SessionManager::getDefaultDriver(); - } - - /** - * Set the default session driver name. - * - * @param string $name - * @return void - * @static - */ - public static function setDefaultDriver($name){ - \Illuminate\Session\SessionManager::setDefaultDriver($name); - } - - /** - * Get a driver instance. - * - * @param string $driver - * @return mixed - * @static - */ - public static function driver($driver = null){ - //Method inherited from \Illuminate\Support\Manager - return \Illuminate\Session\SessionManager::driver($driver); - } - - /** - * Register a custom driver creator Closure. - * - * @param string $driver - * @param \Closure $callback - * @return $this - * @static - */ - public static function extend($driver, $callback){ - //Method inherited from \Illuminate\Support\Manager - return \Illuminate\Session\SessionManager::extend($driver, $callback); - } - - /** - * Get all of the created "drivers". - * - * @return array - * @static - */ - public static function getDrivers(){ - //Method inherited from \Illuminate\Support\Manager - return \Illuminate\Session\SessionManager::getDrivers(); - } - - /** - * Starts the session storage. - * - * @return bool True if session started. - * @throws \RuntimeException If session fails to start. - * @api - * @static - */ - public static function start(){ - return \Illuminate\Session\Store::start(); - } - - /** - * Returns the session ID. - * - * @return string The session ID. - * @api - * @static - */ - public static function getId(){ - return \Illuminate\Session\Store::getId(); - } - - /** - * Sets the session ID. - * - * @param string $id - * @api - * @static - */ - public static function setId($id){ - return \Illuminate\Session\Store::setId($id); - } - - /** - * Determine if this is a valid session ID. - * - * @param string $id - * @return bool - * @static - */ - public static function isValidId($id){ - return \Illuminate\Session\Store::isValidId($id); - } - - /** - * Returns the session name. - * - * @return mixed The session name. - * @api - * @static - */ - public static function getName(){ - return \Illuminate\Session\Store::getName(); - } - - /** - * Sets the session name. - * - * @param string $name - * @api - * @static - */ - public static function setName($name){ - return \Illuminate\Session\Store::setName($name); - } - - /** - * Invalidates the current session. - * - * Clears all session attributes and flashes and regenerates the - * session and deletes the old session from persistence. - * - * @param int $lifetime Sets the cookie lifetime for the session cookie. A null value - * will leave the system settings unchanged, 0 sets the cookie - * to expire with browser session. Time is in seconds, and is - * not a Unix timestamp. - * @return bool True if session invalidated, false if error. - * @api - * @static - */ - public static function invalidate($lifetime = null){ - return \Illuminate\Session\Store::invalidate($lifetime); - } - - /** - * Migrates the current session to a new session id while maintaining all - * session attributes. - * - * @param bool $destroy Whether to delete the old session or leave it to garbage collection. - * @param int $lifetime Sets the cookie lifetime for the session cookie. A null value - * will leave the system settings unchanged, 0 sets the cookie - * to expire with browser session. Time is in seconds, and is - * not a Unix timestamp. - * @return bool True if session migrated, false if error. - * @api - * @static - */ - public static function migrate($destroy = false, $lifetime = null){ - return \Illuminate\Session\Store::migrate($destroy, $lifetime); - } - - /** - * Generate a new session identifier. - * - * @param bool $destroy - * @return bool - * @static - */ - public static function regenerate($destroy = false){ - return \Illuminate\Session\Store::regenerate($destroy); - } - - /** - * Force the session to be saved and closed. - * - * This method is generally not required for real sessions as - * the session will be automatically saved at the end of - * code execution. - * - * @static - */ - public static function save(){ - return \Illuminate\Session\Store::save(); - } - - /** - * Age the flash data for the session. - * - * @return void - * @static - */ - public static function ageFlashData(){ - \Illuminate\Session\Store::ageFlashData(); - } - - /** - * Checks if an attribute is defined. - * - * @param string $name The attribute name - * @return bool true if the attribute is defined, false otherwise - * @api - * @static - */ - public static function has($name){ - return \Illuminate\Session\Store::has($name); - } - - /** - * Returns an attribute. - * - * @param string $name The attribute name - * @param mixed $default The default value if not found. - * @return mixed - * @api - * @static - */ - public static function get($name, $default = null){ - return \Illuminate\Session\Store::get($name, $default); - } - - /** - * Get the value of a given key and then forget it. - * - * @param string $key - * @param string $default - * @return mixed - * @static - */ - public static function pull($key, $default = null){ - return \Illuminate\Session\Store::pull($key, $default); - } - - /** - * Determine if the session contains old input. - * - * @param string $key - * @return bool - * @static - */ - public static function hasOldInput($key = null){ - return \Illuminate\Session\Store::hasOldInput($key); - } - - /** - * Get the requested item from the flashed input array. - * - * @param string $key - * @param mixed $default - * @return mixed - * @static - */ - public static function getOldInput($key = null, $default = null){ - return \Illuminate\Session\Store::getOldInput($key, $default); - } - - /** - * Sets an attribute. - * - * @param string $name - * @param mixed $value - * @api - * @static - */ - public static function set($name, $value){ - return \Illuminate\Session\Store::set($name, $value); - } - - /** - * Put a key / value pair or array of key / value pairs in the session. - * - * @param string|array $key - * @param mixed|null $value - * @return void - * @static - */ - public static function put($key, $value = null){ - \Illuminate\Session\Store::put($key, $value); - } - - /** - * Push a value onto a session array. - * - * @param string $key - * @param mixed $value - * @return void - * @static - */ - public static function push($key, $value){ - \Illuminate\Session\Store::push($key, $value); - } - - /** - * Flash a key / value pair to the session. - * - * @param string $key - * @param mixed $value - * @return void - * @static - */ - public static function flash($key, $value){ - \Illuminate\Session\Store::flash($key, $value); - } - - /** - * Flash an input array to the session. - * - * @param array $value - * @return void - * @static - */ - public static function flashInput($value){ - \Illuminate\Session\Store::flashInput($value); - } - - /** - * Reflash all of the session flash data. - * - * @return void - * @static - */ - public static function reflash(){ - \Illuminate\Session\Store::reflash(); - } - - /** - * Reflash a subset of the current flash data. - * - * @param array|mixed $keys - * @return void - * @static - */ - public static function keep($keys = null){ - \Illuminate\Session\Store::keep($keys); - } - - /** - * Returns attributes. - * - * @return array Attributes - * @api - * @static - */ - public static function all(){ - return \Illuminate\Session\Store::all(); - } - - /** - * Sets attributes. - * - * @param array $attributes Attributes - * @static - */ - public static function replace($attributes){ - return \Illuminate\Session\Store::replace($attributes); - } - - /** - * Removes an attribute. - * - * @param string $name - * @return mixed The removed value or null when it does not exist - * @api - * @static - */ - public static function remove($name){ - return \Illuminate\Session\Store::remove($name); - } - - /** - * Remove an item from the session. - * - * @param string $key - * @return void - * @static - */ - public static function forget($key){ - \Illuminate\Session\Store::forget($key); - } - - /** - * Clears all attributes. - * - * @api - * @static - */ - public static function clear(){ - return \Illuminate\Session\Store::clear(); - } - - /** - * Remove all of the items from the session. - * - * @return void - * @static - */ - public static function flush(){ - \Illuminate\Session\Store::flush(); - } - - /** - * Checks if the session was started. - * - * @return bool - * @static - */ - public static function isStarted(){ - return \Illuminate\Session\Store::isStarted(); - } - - /** - * Registers a SessionBagInterface with the session. - * - * @param \Symfony\Component\HttpFoundation\Session\SessionBagInterface $bag - * @static - */ - public static function registerBag($bag){ - return \Illuminate\Session\Store::registerBag($bag); - } - - /** - * Gets a bag instance by name. - * - * @param string $name - * @return \Symfony\Component\HttpFoundation\Session\SessionBagInterface - * @static - */ - public static function getBag($name){ - return \Illuminate\Session\Store::getBag($name); - } - - /** - * Gets session meta. - * - * @return \Symfony\Component\HttpFoundation\Session\MetadataBag - * @static - */ - public static function getMetadataBag(){ - return \Illuminate\Session\Store::getMetadataBag(); - } - - /** - * Get the raw bag data array for a given bag. - * - * @param string $name - * @return array - * @static - */ - public static function getBagData($name){ - return \Illuminate\Session\Store::getBagData($name); - } - - /** - * Get the CSRF token value. - * - * @return string - * @static - */ - public static function token(){ - return \Illuminate\Session\Store::token(); - } - - /** - * Get the CSRF token value. - * - * @return string - * @static - */ - public static function getToken(){ - return \Illuminate\Session\Store::getToken(); - } - - /** - * Regenerate the CSRF token value. - * - * @return void - * @static - */ - public static function regenerateToken(){ - \Illuminate\Session\Store::regenerateToken(); - } - - /** - * Set the existence of the session on the handler if applicable. - * - * @param bool $value - * @return void - * @static - */ - public static function setExists($value){ - \Illuminate\Session\Store::setExists($value); - } - - /** - * Get the underlying session handler implementation. - * - * @return \SessionHandlerInterface - * @static - */ - public static function getHandler(){ - return \Illuminate\Session\Store::getHandler(); - } - - /** - * Determine if the session handler needs a request. - * - * @return bool - * @static - */ - public static function handlerNeedsRequest(){ - return \Illuminate\Session\Store::handlerNeedsRequest(); - } - - /** - * Set the request on the handler instance. - * - * @param \Symfony\Component\HttpFoundation\Request $request - * @return void - * @static - */ - public static function setRequestOnHandler($request){ - \Illuminate\Session\Store::setRequestOnHandler($request); - } - - } - - - class SSH extends \Illuminate\Support\Facades\SSH{ - - /** - * Get a remote connection instance. - * - * @param string|array|mixed $name - * @return \Illuminate\Remote\Connection - * @static - */ - public static function into($name){ - return \Illuminate\Remote\RemoteManager::into($name); - } - - /** - * Get a remote connection instance. - * - * @param string|array $name - * @return \Illuminate\Remote\Connection - * @static - */ - public static function connection($name = null){ - return \Illuminate\Remote\RemoteManager::connection($name); - } - - /** - * Get a connection group instance by name. - * - * @param string $name - * @return \Illuminate\Remote\Connection - * @static - */ - public static function group($name){ - return \Illuminate\Remote\RemoteManager::group($name); - } - - /** - * Resolve a multiple connection instance. - * - * @param array $names - * @return \Illuminate\Remote\MultiConnection - * @static - */ - public static function multiple($names){ - return \Illuminate\Remote\RemoteManager::multiple($names); - } - - /** - * Resolve a remote connection instance. - * - * @param string $name - * @return \Illuminate\Remote\Connection - * @static - */ - public static function resolve($name){ - return \Illuminate\Remote\RemoteManager::resolve($name); - } - - /** - * Get the default connection name. - * - * @return string - * @static - */ - public static function getDefaultConnection(){ - return \Illuminate\Remote\RemoteManager::getDefaultConnection(); - } - - /** - * Set the default connection name. - * - * @param string $name - * @return void - * @static - */ - public static function setDefaultConnection($name){ - \Illuminate\Remote\RemoteManager::setDefaultConnection($name); - } - - /** - * Define a set of commands as a task. - * - * @param string $task - * @param string|array $commands - * @return void - * @static - */ - public static function define($task, $commands){ - \Illuminate\Remote\Connection::define($task, $commands); - } - - /** - * Run a task against the connection. - * - * @param string $task - * @param \Closure $callback - * @return void - * @static - */ - public static function task($task, $callback = null){ - \Illuminate\Remote\Connection::task($task, $callback); - } - - /** - * Run a set of commands against the connection. - * - * @param string|array $commands - * @param \Closure $callback - * @return void - * @static - */ - public static function run($commands, $callback = null){ - \Illuminate\Remote\Connection::run($commands, $callback); - } - - /** - * Download the contents of a remote file. - * - * @param string $remote - * @param string $local - * @return void - * @static - */ - public static function get($remote, $local){ - \Illuminate\Remote\Connection::get($remote, $local); - } - - /** - * Get the contents of a remote file. - * - * @param string $remote - * @return string - * @static - */ - public static function getString($remote){ - return \Illuminate\Remote\Connection::getString($remote); - } - - /** - * Upload a local file to the server. - * - * @param string $local - * @param string $remote - * @return void - * @static - */ - public static function put($local, $remote){ - \Illuminate\Remote\Connection::put($local, $remote); - } - - /** - * Upload a string to to the given file on the server. - * - * @param string $remote - * @param string $contents - * @return void - * @static - */ - public static function putString($remote, $contents){ - \Illuminate\Remote\Connection::putString($remote, $contents); - } - - /** - * Display the given line using the default output. - * - * @param string $line - * @return void - * @static - */ - public static function display($line){ - \Illuminate\Remote\Connection::display($line); - } - - /** - * Get the exit status of the last command. - * - * @return int|bool - * @static - */ - public static function status(){ - return \Illuminate\Remote\Connection::status(); - } - - /** - * Get the gateway implementation. - * - * @return \Illuminate\Remote\GatewayInterface - * @throws \RuntimeException - * @static - */ - public static function getGateway(){ - return \Illuminate\Remote\Connection::getGateway(); - } - - /** - * Get the output implementation for the connection. - * - * @return \Symfony\Component\Console\Output\OutputInterface - * @static - */ - public static function getOutput(){ - return \Illuminate\Remote\Connection::getOutput(); - } - - /** - * Set the output implementation. - * - * @param \Symfony\Component\Console\Output\OutputInterface $output - * @return void - * @static - */ - public static function setOutput($output){ - \Illuminate\Remote\Connection::setOutput($output); - } - - } - - - class Str extends \Illuminate\Support\Str{ - - } - - - class URL extends \Illuminate\Support\Facades\URL{ - - /** - * {@inheritDoc} - * - * @static - */ - public static function action($action, $parameters = array(), $absolute = true){ - return \Dingo\Api\Routing\UrlGenerator::action($action, $parameters, $absolute); - } - - /** - * {@inheritDoc} - * - * @static - */ - public static function route($name, $parameters = array(), $absolute = true, $route = null){ - return \Dingo\Api\Routing\UrlGenerator::route($name, $parameters, $absolute, $route); - } - - /** - * Get the full URL for the current request. - * - * @return string - * @static - */ - public static function full(){ - //Method inherited from \Illuminate\Routing\UrlGenerator - return \Dingo\Api\Routing\UrlGenerator::full(); - } - - /** - * Get the current URL for the request. - * - * @return string - * @static - */ - public static function current(){ - //Method inherited from \Illuminate\Routing\UrlGenerator - return \Dingo\Api\Routing\UrlGenerator::current(); - } - - /** - * Get the URL for the previous request. - * - * @return string - * @static - */ - public static function previous(){ - //Method inherited from \Illuminate\Routing\UrlGenerator - return \Dingo\Api\Routing\UrlGenerator::previous(); - } - - /** - * Generate a absolute URL to the given path. - * - * @param string $path - * @param mixed $extra - * @param bool|null $secure - * @return string - * @static - */ - public static function to($path, $extra = array(), $secure = null){ - //Method inherited from \Illuminate\Routing\UrlGenerator - return \Dingo\Api\Routing\UrlGenerator::to($path, $extra, $secure); - } - - /** - * Generate a secure, absolute URL to the given path. - * - * @param string $path - * @param array $parameters - * @return string - * @static - */ - public static function secure($path, $parameters = array()){ - //Method inherited from \Illuminate\Routing\UrlGenerator - return \Dingo\Api\Routing\UrlGenerator::secure($path, $parameters); - } - - /** - * Generate a URL to an application asset. - * - * @param string $path - * @param bool|null $secure - * @return string - * @static - */ - public static function asset($path, $secure = null){ - //Method inherited from \Illuminate\Routing\UrlGenerator - return \Dingo\Api\Routing\UrlGenerator::asset($path, $secure); - } - - /** - * Generate a URL to a secure asset. - * - * @param string $path - * @return string - * @static - */ - public static function secureAsset($path){ - //Method inherited from \Illuminate\Routing\UrlGenerator - return \Dingo\Api\Routing\UrlGenerator::secureAsset($path); - } - - /** - * Force the schema for URLs. - * - * @param string $schema - * @return void - * @static - */ - public static function forceSchema($schema){ - //Method inherited from \Illuminate\Routing\UrlGenerator - \Dingo\Api\Routing\UrlGenerator::forceSchema($schema); - } - - /** - * Set the forced root URL. - * - * @param string $root - * @return void - * @static - */ - public static function forceRootUrl($root){ - //Method inherited from \Illuminate\Routing\UrlGenerator - \Dingo\Api\Routing\UrlGenerator::forceRootUrl($root); - } - - /** - * Determine if the given path is a valid URL. - * - * @param string $path - * @return bool - * @static - */ - public static function isValidUrl($path){ - //Method inherited from \Illuminate\Routing\UrlGenerator - return \Dingo\Api\Routing\UrlGenerator::isValidUrl($path); - } - - /** - * Get the request instance. - * - * @return \Symfony\Component\HttpFoundation\Request - * @static - */ - public static function getRequest(){ - //Method inherited from \Illuminate\Routing\UrlGenerator - return \Dingo\Api\Routing\UrlGenerator::getRequest(); - } - - /** - * Set the current request instance. - * - * @param \Illuminate\Http\Request $request - * @return void - * @static - */ - public static function setRequest($request){ - //Method inherited from \Illuminate\Routing\UrlGenerator - \Dingo\Api\Routing\UrlGenerator::setRequest($request); - } - - } - - - class Validator extends \Illuminate\Support\Facades\Validator{ - - /** - * Create a new Validator instance. - * - * @param array $data - * @param array $rules - * @param array $messages - * @param array $customAttributes - * @return \Illuminate\Validation\Validator - * @static - */ - public static function make($data, $rules, $messages = array(), $customAttributes = array()){ - return \Illuminate\Validation\Factory::make($data, $rules, $messages, $customAttributes); - } - - /** - * Register a custom validator extension. - * - * @param string $rule - * @param \Closure|string $extension - * @param string $message - * @return void - * @static - */ - public static function extend($rule, $extension, $message = null){ - \Illuminate\Validation\Factory::extend($rule, $extension, $message); - } - - /** - * Register a custom implicit validator extension. - * - * @param string $rule - * @param \Closure|string $extension - * @param string $message - * @return void - * @static - */ - public static function extendImplicit($rule, $extension, $message = null){ - \Illuminate\Validation\Factory::extendImplicit($rule, $extension, $message); - } - - /** - * Register a custom implicit validator message replacer. - * - * @param string $rule - * @param \Closure|string $replacer - * @return void - * @static - */ - public static function replacer($rule, $replacer){ - \Illuminate\Validation\Factory::replacer($rule, $replacer); - } - - /** - * Set the Validator instance resolver. - * - * @param \Closure $resolver - * @return void - * @static - */ - public static function resolver($resolver){ - \Illuminate\Validation\Factory::resolver($resolver); - } - - /** - * Get the Translator implementation. - * - * @return \Symfony\Component\Translation\TranslatorInterface - * @static - */ - public static function getTranslator(){ - return \Illuminate\Validation\Factory::getTranslator(); - } - - /** - * Get the Presence Verifier implementation. - * - * @return \Illuminate\Validation\PresenceVerifierInterface - * @static - */ - public static function getPresenceVerifier(){ - return \Illuminate\Validation\Factory::getPresenceVerifier(); - } - - /** - * Set the Presence Verifier implementation. - * - * @param \Illuminate\Validation\PresenceVerifierInterface $presenceVerifier - * @return void - * @static - */ - public static function setPresenceVerifier($presenceVerifier){ - \Illuminate\Validation\Factory::setPresenceVerifier($presenceVerifier); - } - - } - - - class View extends \Illuminate\Support\Facades\View{ - - /** - * Get the evaluated view contents for the given view. - * - * @param string $view - * @param array $data - * @param array $mergeData - * @return \Illuminate\View\View - * @static - */ - public static function make($view, $data = array(), $mergeData = array()){ - return \Illuminate\View\Factory::make($view, $data, $mergeData); - } - - /** - * Get the evaluated view contents for a named view. - * - * @param string $view - * @param mixed $data - * @return \Illuminate\View\View - * @static - */ - public static function of($view, $data = array()){ - return \Illuminate\View\Factory::of($view, $data); - } - - /** - * Register a named view. - * - * @param string $view - * @param string $name - * @return void - * @static - */ - public static function name($view, $name){ - \Illuminate\View\Factory::name($view, $name); - } - - /** - * Add an alias for a view. - * - * @param string $view - * @param string $alias - * @return void - * @static - */ - public static function alias($view, $alias){ - \Illuminate\View\Factory::alias($view, $alias); - } - - /** - * Determine if a given view exists. - * - * @param string $view - * @return bool - * @static - */ - public static function exists($view){ - return \Illuminate\View\Factory::exists($view); - } - - /** - * Get the rendered contents of a partial from a loop. - * - * @param string $view - * @param array $data - * @param string $iterator - * @param string $empty - * @return string - * @static - */ - public static function renderEach($view, $data, $iterator, $empty = 'raw|'){ - return \Illuminate\View\Factory::renderEach($view, $data, $iterator, $empty); - } - - /** - * Get the appropriate view engine for the given path. - * - * @param string $path - * @return \Illuminate\View\Engines\EngineInterface - * @throws \InvalidArgumentException - * @static - */ - public static function getEngineFromPath($path){ - return \Illuminate\View\Factory::getEngineFromPath($path); - } - - /** - * Add a piece of shared data to the environment. - * - * @param string $key - * @param mixed $value - * @return void - * @static - */ - public static function share($key, $value = null){ - \Illuminate\View\Factory::share($key, $value); - } - - /** - * Register a view creator event. - * - * @param array|string $views - * @param \Closure|string $callback - * @return array - * @static - */ - public static function creator($views, $callback){ - return \Illuminate\View\Factory::creator($views, $callback); - } - - /** - * Register multiple view composers via an array. - * - * @param array $composers - * @return array - * @static - */ - public static function composers($composers){ - return \Illuminate\View\Factory::composers($composers); - } - - /** - * Register a view composer event. - * - * @param array|string $views - * @param \Closure|string $callback - * @param int|null $priority - * @return array - * @static - */ - public static function composer($views, $callback, $priority = null){ - return \Illuminate\View\Factory::composer($views, $callback, $priority); - } - - /** - * Call the composer for a given view. - * - * @param \Illuminate\View\View $view - * @return void - * @static - */ - public static function callComposer($view){ - \Illuminate\View\Factory::callComposer($view); - } - - /** - * Call the creator for a given view. - * - * @param \Illuminate\View\View $view - * @return void - * @static - */ - public static function callCreator($view){ - \Illuminate\View\Factory::callCreator($view); - } - - /** - * Start injecting content into a section. - * - * @param string $section - * @param string $content - * @return void - * @static - */ - public static function startSection($section, $content = ''){ - \Illuminate\View\Factory::startSection($section, $content); - } - - /** - * Inject inline content into a section. - * - * @param string $section - * @param string $content - * @return void - * @static - */ - public static function inject($section, $content){ - \Illuminate\View\Factory::inject($section, $content); - } - - /** - * Stop injecting content into a section and return its contents. - * - * @return string - * @static - */ - public static function yieldSection(){ - return \Illuminate\View\Factory::yieldSection(); - } - - /** - * Stop injecting content into a section. - * - * @param bool $overwrite - * @return string - * @static - */ - public static function stopSection($overwrite = false){ - return \Illuminate\View\Factory::stopSection($overwrite); - } - - /** - * Stop injecting content into a section and append it. - * - * @return string - * @static - */ - public static function appendSection(){ - return \Illuminate\View\Factory::appendSection(); - } - - /** - * Get the string contents of a section. - * - * @param string $section - * @param string $default - * @return string - * @static - */ - public static function yieldContent($section, $default = ''){ - return \Illuminate\View\Factory::yieldContent($section, $default); - } - - /** - * Flush all of the section contents. - * - * @return void - * @static - */ - public static function flushSections(){ - \Illuminate\View\Factory::flushSections(); - } - - /** - * Flush all of the section contents if done rendering. - * - * @return void - * @static - */ - public static function flushSectionsIfDoneRendering(){ - \Illuminate\View\Factory::flushSectionsIfDoneRendering(); - } - - /** - * Increment the rendering counter. - * - * @return void - * @static - */ - public static function incrementRender(){ - \Illuminate\View\Factory::incrementRender(); - } - - /** - * Decrement the rendering counter. - * - * @return void - * @static - */ - public static function decrementRender(){ - \Illuminate\View\Factory::decrementRender(); - } - - /** - * Check if there are no active render operations. - * - * @return bool - * @static - */ - public static function doneRendering(){ - return \Illuminate\View\Factory::doneRendering(); - } - - /** - * Add a location to the array of view locations. - * - * @param string $location - * @return void - * @static - */ - public static function addLocation($location){ - \Illuminate\View\Factory::addLocation($location); - } - - /** - * Add a new namespace to the loader. - * - * @param string $namespace - * @param string|array $hints - * @return void - * @static - */ - public static function addNamespace($namespace, $hints){ - \Illuminate\View\Factory::addNamespace($namespace, $hints); - } - - /** - * Prepend a new namespace to the loader. - * - * @param string $namespace - * @param string|array $hints - * @return void - * @static - */ - public static function prependNamespace($namespace, $hints){ - \Illuminate\View\Factory::prependNamespace($namespace, $hints); - } - - /** - * Register a valid view extension and its engine. - * - * @param string $extension - * @param string $engine - * @param \Closure $resolver - * @return void - * @static - */ - public static function addExtension($extension, $engine, $resolver = null){ - \Illuminate\View\Factory::addExtension($extension, $engine, $resolver); - } - - /** - * Get the extension to engine bindings. - * - * @return array - * @static - */ - public static function getExtensions(){ - return \Illuminate\View\Factory::getExtensions(); - } - - /** - * Get the engine resolver instance. - * - * @return \Illuminate\View\Engines\EngineResolver - * @static - */ - public static function getEngineResolver(){ - return \Illuminate\View\Factory::getEngineResolver(); - } - - /** - * Get the view finder instance. - * - * @return \Illuminate\View\ViewFinderInterface - * @static - */ - public static function getFinder(){ - return \Illuminate\View\Factory::getFinder(); - } - - /** - * Set the view finder instance. - * - * @param \Illuminate\View\ViewFinderInterface $finder - * @return void - * @static - */ - public static function setFinder($finder){ - \Illuminate\View\Factory::setFinder($finder); - } - - /** - * Get the event dispatcher instance. - * - * @return \Illuminate\Events\Dispatcher - * @static - */ - public static function getDispatcher(){ - return \Illuminate\View\Factory::getDispatcher(); - } - - /** - * Set the event dispatcher instance. - * - * @param \Illuminate\Events\Dispatcher - * @return void - * @static - */ - public static function setDispatcher($events){ - \Illuminate\View\Factory::setDispatcher($events); - } - - /** - * Get the IoC container instance. - * - * @return \Illuminate\Container\Container - * @static - */ - public static function getContainer(){ - return \Illuminate\View\Factory::getContainer(); - } - - /** - * Set the IoC container instance. - * - * @param \Illuminate\Container\Container $container - * @return void - * @static - */ - public static function setContainer($container){ - \Illuminate\View\Factory::setContainer($container); - } - - /** - * Get an item from the shared data. - * - * @param string $key - * @param mixed $default - * @return mixed - * @static - */ - public static function shared($key, $default = null){ - return \Illuminate\View\Factory::shared($key, $default); - } - - /** - * Get all of the shared data for the environment. - * - * @return array - * @static - */ - public static function getShared(){ - return \Illuminate\View\Factory::getShared(); - } - - /** - * Get the entire array of sections. - * - * @return array - * @static - */ - public static function getSections(){ - return \Illuminate\View\Factory::getSections(); - } - - /** - * Get all of the registered named views in environment. - * - * @return array - * @static - */ - public static function getNames(){ - return \Illuminate\View\Factory::getNames(); - } - - } - - - - class LocalizationHelpers extends \Potsky\LaravelLocalizationHelpers\Facade\LocalizationHelpers - { - public static function test() { - return true; - } - } - -} - diff --git a/composer.json b/composer.json old mode 100644 new mode 100755 index 1fd410d..3900f95 --- a/composer.json +++ b/composer.json @@ -1,31 +1,25 @@ { - "name" : "potsky/laravel-localization-helpers", - "description" : "An artisan command package for easy translation management", - "authors" : [ - { - "name" : "Potsky", - "email" : "potsky@me.com", - "homepage" : "http://www.potsky.com" - } - ], - "license" : "GPL-3.0+", - "require" : { - "laravel/framework" : ">=4.2", - "fabpot/php-cs-fixer" : "^1.11" - }, - "require-dev" : { - "orchestra/testbench" : "^2.2", - "phpunit/phpunit" : "^4.0|^5.0", - "mockery/mockery" : "^0.9", - "satooshi/php-coveralls" : "dev-master" - }, - "autoload" : { - "classmap" : [ - "src/migrations" + "name" : "potsky/laravel-localization-helpers", + "description" : "An artisan command package for easy translation management", + "authors" : [ + { + "name" : "Potsky", + "email" : "potsky@me.com", + "homepage" : "http://www.potsky.com" + } ], - "psr-0" : { - "Potsky\\LaravelLocalizationHelpers\\" : "src/" - } - }, - "minimum-stability" : "stable" + "license" : "GPL-3.0+", + "require" : { + "php" : ">=5.3.0", + "illuminate/support" : ">=4.1" + }, + "autoload" : { + "classmap" : [ + "src/migrations" + ], + "psr-0" : { + "Potsky\\LaravelLocalizationHelpers\\": "src/" + } + }, + "minimum-stability" : "stable" } diff --git a/phpunit.xml b/phpunit.xml old mode 100644 new mode 100755 index 665a575..3347b75 --- a/phpunit.xml +++ b/phpunit.xml @@ -1,7 +1,7 @@ +> - - ./tests/ + + ./tests/ - - - - - - - ./src - - diff --git a/public/.gitkeep b/public/.gitkeep new file mode 100755 index 0000000..e69de29 diff --git a/src/Potsky/LaravelLocalizationHelpers/Command/LocalizationClear.php b/src/Potsky/LaravelLocalizationHelpers/Command/LocalizationClear.php deleted file mode 100644 index f9eaa97..0000000 --- a/src/Potsky/LaravelLocalizationHelpers/Command/LocalizationClear.php +++ /dev/null @@ -1,68 +0,0 @@ -writeInfo( (int)$this->option('days') ); - } - - - /** - * Get the console command arguments. - * - * @return array - */ - protected function getArguments() - { - return array(); - } - - /** - * Get the console command options. - * - * @return array - */ - protected function getOptions() - { - return array( - array( 'days' , 'd' , InputOption::VALUE_REQUIRED , 'Remove backups older than this count of days' ) - ); - } - -} diff --git a/src/Potsky/LaravelLocalizationHelpers/Command/LocalizationAbstract.php b/src/Potsky/LaravelLocalizationHelpers/Commands/LocalizationAbstract.php old mode 100644 new mode 100755 similarity index 75% rename from src/Potsky/LaravelLocalizationHelpers/Command/LocalizationAbstract.php rename to src/Potsky/LaravelLocalizationHelpers/Commands/LocalizationAbstract.php index 2280d2b..368d2fd --- a/src/Potsky/LaravelLocalizationHelpers/Command/LocalizationAbstract.php +++ b/src/Potsky/LaravelLocalizationHelpers/Commands/LocalizationAbstract.php @@ -1,18 +1,14 @@ = 5 ) ? 'laravel-localization-helpers.' : 'laravel-localization-helpers::config.'; - - $this->trans_methods = Config::get( $base . 'trans_methods' ); - $this->folders = Config::get( $base . 'folders' ); - $this->ignore_lang_files = Config::get( $base . 'ignore_lang_files' ); - $this->lang_folder_path = Config::get( $base . 'lang_folder_path' ); - $this->never_obsolete_keys = Config::get( $base . 'never_obsolete_keys' ); - $this->editor = Config::get( $base . 'editor_command_line' ); - + $laravel = app(); + if ( substr( $laravel::VERSION , 0 , 1 ) == '5' ) + { + // Laravel 5 + $this->trans_methods = \Config::get( 'laravel-localization-helpers.trans_methods' ); + $this->folders = \Config::get( 'laravel-localization-helpers.folders' ); + $this->ignore_lang_files = \Config::get( 'laravel-localization-helpers.ignore_lang_files' ); + $this->lang_folder_path = \Config::get( 'laravel-localization-helpers.lang_folder_path' ); + $this->never_obsolete_keys = \Config::get( 'laravel-localization-helpers.never_obsolete_keys' ); + $this->editor = \Config::get( 'laravel-localization-helpers.editor_command_line' ); + } + else + { + // Laravel 4 + $this->trans_methods = \Config::get( 'laravel-localization-helpers::config.trans_methods' ); + $this->folders = \Config::get( 'laravel-localization-helpers::config.folders' ); + $this->ignore_lang_files = \Config::get( 'laravel-localization-helpers::config.ignore_lang_files' ); + $this->lang_folder_path = \Config::get( 'laravel-localization-helpers::config.lang_folder_path' ); + $this->never_obsolete_keys = \Config::get( 'laravel-localization-helpers::config.never_obsolete_keys' ); + $this->editor = \Config::get( 'laravel-localization-helpers::config.editor_command_line' ); + } parent::__construct(); } @@ -191,10 +201,8 @@ protected function get_lang_path() { return $this->lang_folder_path; } - $this->writeError( 'No lang folder found in your custom path: "' . $this->lang_folder_path . '"' ); $this->writeLine( '' ); - die(); } } @@ -202,17 +210,12 @@ protected function get_lang_path() /** * Return an absolute path without predefined variables * - * @param string|array $path the relative path + * @param string $path the relative path * - * @return array the absolute path + * @return string the absolute path */ protected function get_path( $path ) { - if ( ! is_array( $path ) ) - { - $path = array( $path ); - } - return str_replace( array( '%APP' , @@ -224,7 +227,7 @@ protected function get_path( $path ) app_path() , base_path() , public_path() , - storage_path() , + storage_path(), ) , $path ); @@ -286,7 +289,7 @@ protected function extract_translation_from_php_file( $path ) foreach ( array_flatten( $this->trans_methods ) as $method ) { preg_match_all( $method , $string , $matches ); - + $a = array(); foreach ( $matches[ 1 ] as $k => $v ) { if ( strpos( $v , '$' ) !== false ) diff --git a/src/Potsky/LaravelLocalizationHelpers/Command/LocalizationFind.php b/src/Potsky/LaravelLocalizationHelpers/Commands/LocalizationFind.php old mode 100644 new mode 100755 similarity index 96% rename from src/Potsky/LaravelLocalizationHelpers/Command/LocalizationFind.php rename to src/Potsky/LaravelLocalizationHelpers/Commands/LocalizationFind.php index 3cd1365..fd14691 --- a/src/Potsky/LaravelLocalizationHelpers/Command/LocalizationFind.php +++ b/src/Potsky/LaravelLocalizationHelpers/Commands/LocalizationFind.php @@ -1,8 +1,9 @@ option( 'verbose' ) ) { $this->writeLine( "Lemmas will be searched in the following directories:" ); - foreach ( $folders as $path ) { $this->writeLine( ' ' . $path . '' ); } - $this->writeLine( '' ); } @@ -63,7 +64,6 @@ public function fire() // Parse all lemmas from code // //////////////////////////////// $files = array(); - foreach ( $folders as $path ) { foreach ( $this->get_php_files( $path ) as $php_file_path => $dumb ) diff --git a/src/Potsky/LaravelLocalizationHelpers/Command/LocalizationMissing.php b/src/Potsky/LaravelLocalizationHelpers/Commands/LocalizationMissing.php old mode 100644 new mode 100755 similarity index 95% rename from src/Potsky/LaravelLocalizationHelpers/Command/LocalizationMissing.php rename to src/Potsky/LaravelLocalizationHelpers/Commands/LocalizationMissing.php index 3af7f01..f3f7536 --- a/src/Potsky/LaravelLocalizationHelpers/Command/LocalizationMissing.php +++ b/src/Potsky/LaravelLocalizationHelpers/Commands/LocalizationMissing.php @@ -1,8 +1,9 @@ get_path( $this->folders ); $this->display = ! $this->option( 'silent' ); @@ -48,12 +54,10 @@ public function fire() if ( $this->option( 'verbose' ) ) { $this->writeLine( "Lemmas will be searched in the following directories:" ); - foreach ( $folders as $path ) { $this->writeLine( ' ' . $path . '' ); } - $this->writeLine( '' ); } @@ -200,12 +204,12 @@ public function fire() die(); } - /** @noinspection PhpIncludeInspection */ $a = include( $file_lang_path ); $old_lemmas = ( is_array( $a ) ) ? array_dot( $a ) : array(); $new_lemmas = array_dot( $array ); $final_lemmas = array(); $display_already_comment = false; + $display_obsolete_comment = false; $something_to_do = false; $i = 0; $obsolete_lemmas = array_diff_key( $old_lemmas , $new_lemmas ); @@ -281,6 +285,7 @@ public function fire() if ( count( $obsolete_lemmas ) > 0 ) { $display_already_comment = true; + $display_obsolete_comment = ( $this->option( 'no-obsolete' ) ) ? false : true; $something_to_do = true; $this->writeComment( $this->option( 'no-obsolete' ) ? " " . count( $obsolete_lemmas ) . " obsolete strings (will be deleted)" @@ -351,11 +356,11 @@ public function fire() { if ( $there_are_new === true ) { - return self::ERROR; + return ERROR; } else { - return self::SUCCESS; + return SUCCESS; } } @@ -428,15 +433,13 @@ public function fire() { if ( $this->option( 'silent' ) ) { - return self::SUCCESS; + return SUCCESS; } $this->writeLine( '' ); $this->writeInfo( 'Drink a PiƱa colada and/or smoke Super Skunk, you have nothing to do!' ); } $this->writeLine( '' ); - - return self::SUCCESS; } /** @@ -457,15 +460,15 @@ protected function getArguments() protected function getOptions() { return array( - array( 'dry-run' , 'r' , InputOption::VALUE_NONE , 'Dry run: run process but do not write anything' ) , + array( 'dry-run' , 'r' , InputOption::VALUE_NONE , 'Dry run : run process but do not write anything' ) , array( 'editor' , 'e' , InputOption::VALUE_NONE , 'Open files which need to be edited at the end of the process' ) , - array( 'force' , 'f' , InputOption::VALUE_NONE , 'Force files to be rewritten even if there is nothing to do' ) , - array( 'new-value' , 'l' , InputOption::VALUE_OPTIONAL , 'Value of new found lemmas (use %LEMMA for the lemma value)' , 'TODO: %LEMMA' ) , + array( 'force' , 'f' , InputOption::VALUE_NONE , 'Force file rewrite even if there is nothing to do' ) , + array( 'new-value' , 'l' , InputOption::VALUE_OPTIONAL , 'Value of new found lemmas (use %LEMMA for the lemma value)' , '%LEMMA' ) , array( 'no-backup' , 'b' , InputOption::VALUE_NONE , 'Do not backup lang file (be careful, I am not a good coder)' ) , array( 'no-comment' , 'c' , InputOption::VALUE_NONE , 'Do not add comments in lang files for lemma definition' ) , array( 'no-date' , 'd' , InputOption::VALUE_NONE , 'Do not add the date of execution in the lang files' ) , array( 'no-obsolete' , 'o' , InputOption::VALUE_NONE , 'Do not write obsolete lemma' ) , - array( 'silent' , 's' , InputOption::VALUE_NONE , 'Use this option to only return the exit code (use $? in shell to know whether there are missing lemma or nt)' ) , + array( 'silent' , 's' , InputOption::VALUE_NONE , 'Use this option to only return the exit code (use $? in shell to know whether there are missing lemma)' ) , ); } diff --git a/src/Potsky/LaravelLocalizationHelpers/Facade/LocalizationHelpers.php b/src/Potsky/LaravelLocalizationHelpers/Facade/LocalizationHelpers.php deleted file mode 100644 index 9112827..0000000 --- a/src/Potsky/LaravelLocalizationHelpers/Facade/LocalizationHelpers.php +++ /dev/null @@ -1,16 +0,0 @@ -= 5 ) ? 'laravel-localization-helpers.' : 'laravel-localization-helpers::config.'; - - $this->trans_methods = Config::get( $base . 'trans_methods' ); - $this->folders = Config::get( $base . 'folders' ); - $this->ignore_lang_files = Config::get( $base . 'ignore_lang_files' ); - $this->lang_folder_path = Config::get( $base . 'lang_folder_path' ); - $this->never_obsolete_keys = Config::get( $base . 'never_obsolete_keys' ); - $this->editor = Config::get( $base . 'editor_command_line' ); - } - - public function test() - { - return true; - } -} \ No newline at end of file diff --git a/src/Potsky/LaravelLocalizationHelpers/Factory/Tools.php b/src/Potsky/LaravelLocalizationHelpers/Factory/Tools.php deleted file mode 100644 index c3c51c6..0000000 --- a/src/Potsky/LaravelLocalizationHelpers/Factory/Tools.php +++ /dev/null @@ -1,36 +0,0 @@ -package( 'potsky/laravel-localization-helpers' ); } + /** + * Register the service provider. + * + * @return void + */ + public function register() + { + $this->app[ 'localization.missing' ] = $this->app->share( function ( $app ) + { + return new Commands\LocalizationMissing( $app[ 'config' ] ); + } ); + + $this->app[ 'localization.find' ] = $this->app->share( function ( $app ) + { + return new Commands\LocalizationFind( $app[ 'config' ] ); + } ); + + $this->commands( + 'localization.missing' , + 'localization.find' + ); + } + + /** + * Get the services provided by the provider. + * + * @return array + */ + public function provides() + { + return array(); + } + } diff --git a/src/Potsky/LaravelLocalizationHelpers/LaravelLocalizationHelpersServiceProviderAbstract.php b/src/Potsky/LaravelLocalizationHelpers/LaravelLocalizationHelpersServiceProviderAbstract.php deleted file mode 100644 index 8b6e608..0000000 --- a/src/Potsky/LaravelLocalizationHelpers/LaravelLocalizationHelpersServiceProviderAbstract.php +++ /dev/null @@ -1,71 +0,0 @@ -app[ 'localization.command.missing' ] = $this->app->share( function ( $app ) - { - return new Command\LocalizationMissing( $app[ 'config' ] ); - } ); - - $this->app[ 'localization.command.find' ] = $this->app->share( function ( $app ) - { - return new Command\LocalizationFind( $app[ 'config' ] ); - } ); - - $this->app[ 'localization.command.clear' ] = $this->app->share( function ( $app ) - { - return new Command\LocalizationClear( $app[ 'config' ] ); - } ); - - $this->commands( - 'localization.command.missing' , - 'localization.command.find', - 'localization.command.clear' - ); - - $this->app[ 'localization.helpers' ] = $this->app->share( function ( $app ) - { - return new Factory\Manager( $app[ 'config' ] ); - } ); - } - - /** - * Get the services provided by the provider. - * - * @return array - */ - public function provides() - { - return array(); - } -} - - - diff --git a/src/Potsky/LaravelLocalizationHelpers/LaravelLocalizationHelpersServiceProviderLaravel5.php b/src/Potsky/LaravelLocalizationHelpers/LaravelLocalizationHelpersServiceProviderLaravel5.php old mode 100644 new mode 100755 index caa350b..e8ab4e0 --- a/src/Potsky/LaravelLocalizationHelpers/LaravelLocalizationHelpersServiceProviderLaravel5.php +++ b/src/Potsky/LaravelLocalizationHelpers/LaravelLocalizationHelpersServiceProviderLaravel5.php @@ -1,20 +1,26 @@ publishes( array( - __DIR__ . '/../../config/config-laravel5.php' => config_path( 'laravel-localization-helpers.php' ) , + __DIR__ . '/../../config/config-laravel5.php' => config_path( 'laravel-localization-helpers.php' ), ) ); } @@ -22,18 +28,39 @@ public function boot() * Register the service provider. * * @return void - * - * @codeCoverageIgnore */ public function register() { - parent::register(); + $this->app[ 'localization.missing' ] = $this->app->share( function ( $app ) + { + return new Commands\LocalizationMissing( $app[ 'config' ] ); + } ); + + $this->app[ 'localization.find' ] = $this->app->share( function ( $app ) + { + return new Commands\LocalizationFind( $app[ 'config' ] ); + } ); + + $this->commands( + 'localization.missing' , + 'localization.find' + ); $this->mergeConfigFrom( __DIR__ . '/../../config/config-laravel5.php' , 'laravel-localization-helpers' ); } + /** + * Get the services provided by the provider. + * + * @return array + */ + public function provides() + { + return array(); + } + } diff --git a/src/config/.gitkeep b/src/config/.gitkeep new file mode 100755 index 0000000..e69de29 diff --git a/src/config/config-laravel5.php b/src/config/config-laravel5.php old mode 100644 new mode 100755 diff --git a/src/config/config.php b/src/config/config.php old mode 100644 new mode 100755 diff --git a/src/controllers/.gitkeep b/src/controllers/.gitkeep new file mode 100755 index 0000000..e69de29 diff --git a/src/lang/.gitkeep b/src/lang/.gitkeep new file mode 100755 index 0000000..e69de29 diff --git a/src/migrations/.gitkeep b/src/migrations/.gitkeep old mode 100644 new mode 100755 diff --git a/src/views/.gitkeep b/src/views/.gitkeep new file mode 100755 index 0000000..e69de29 diff --git a/tests/.gitkeep b/tests/.gitkeep new file mode 100755 index 0000000..e69de29 diff --git a/tests/CommandClearTests.php b/tests/CommandClearTests.php deleted file mode 100644 index 837f923..0000000 --- a/tests/CommandClearTests.php +++ /dev/null @@ -1,16 +0,0 @@ - 8 ) , $output ); - echo $output->fetch(); - */ - - $this->assertTrue( true ); - } - -} diff --git a/tests/CommandFindTests.php b/tests/CommandFindTests.php deleted file mode 100644 index 8f381dd..0000000 --- a/tests/CommandFindTests.php +++ /dev/null @@ -1,10 +0,0 @@ -assertTrue( true ); - } - -} diff --git a/tests/CommandMissingTests.php b/tests/CommandMissingTests.php deleted file mode 100644 index 9263548..0000000 --- a/tests/CommandMissingTests.php +++ /dev/null @@ -1,10 +0,0 @@ -assertTrue( true ); - } - -} diff --git a/tests/ConfigTests.php b/tests/ConfigTests.php deleted file mode 100644 index 4633728..0000000 --- a/tests/ConfigTests.php +++ /dev/null @@ -1,17 +0,0 @@ -assertInternalType( 'array' , $config ); - } - - public function testLaravel5Config() - { - $config = include( 'src/config/config-laravel5.php' ); - $this->assertInternalType( 'array' , $config ); - } - -} diff --git a/tests/FacadeTests.php b/tests/FacadeTests.php deleted file mode 100644 index 658e9af..0000000 --- a/tests/FacadeTests.php +++ /dev/null @@ -1,14 +0,0 @@ -alias( 'LocalizationHelpers', 'Potsky\LaravelLocalizationHelpers\Facade\LocalizationHelpers' ); - - $this->assertTrue( LocalizationHelpers::test() ); - } -} diff --git a/tests/TestCase.php b/tests/TestCase.php deleted file mode 100644 index bb57e81..0000000 --- a/tests/TestCase.php +++ /dev/null @@ -1,30 +0,0 @@ -assertEquals( 4 , Tools::getLaravelMajorVersion() ); - $this->assertFalse( Tools::isLaravel5() ); - } - -} diff --git a/tests/bootstrap.php b/tests/bootstrap.php deleted file mode 100644 index 3e67b6a..0000000 --- a/tests/bootstrap.php +++ /dev/null @@ -1,4 +0,0 @@ -