-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a87cdd4
commit 6316454
Showing
9 changed files
with
332 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,3 +32,6 @@ S3_KEY= | |
S3_SECRET= | ||
S3_REGION= | ||
S3_BUCKET_FORMS= | ||
|
||
RECAPTCHA_PUBLIC_KEY= | ||
RECAPTCHA_PRIVATE_KEY= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
/** | ||
* A helper file for Laravel 5, to provide autocomplete information to your IDE | ||
* Generated for Laravel 5.2.41 on 2016-07-31. | ||
* Generated for Laravel 5.2.45 on 2016-10-19. | ||
* | ||
* @author Barry vd. Heuvel <[email protected]> | ||
* @see https://github.com/barryvdh/laravel-ide-helper | ||
|
@@ -3876,7 +3876,7 @@ public static function applyScopes(){ | |
/** | ||
* Get the underlying query builder instance. | ||
* | ||
* @return \Illuminate\Database\Query\Builder|static | ||
* @return \Illuminate\Database\Query\Builder | ||
* @static | ||
*/ | ||
public static function getQuery(){ | ||
|
@@ -4461,6 +4461,33 @@ public static function orWhereDate($column, $operator, $value){ | |
return \Illuminate\Database\Query\Builder::orWhereDate($column, $operator, $value); | ||
} | ||
|
||
/** | ||
* Add a "where time" 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 whereTime($column, $operator, $value, $boolean = 'and'){ | ||
return \Illuminate\Database\Query\Builder::whereTime($column, $operator, $value, $boolean); | ||
} | ||
|
||
/** | ||
* Add an "or where time" statement to the query. | ||
* | ||
* @param string $column | ||
* @param string $operator | ||
* @param int $value | ||
* @return \Illuminate\Database\Query\Builder|static | ||
* @static | ||
*/ | ||
public static function orWhereTime($column, $operator, $value){ | ||
return \Illuminate\Database\Query\Builder::orWhereTime($column, $operator, $value); | ||
} | ||
|
||
/** | ||
* Add a "where day" statement to the query. | ||
* | ||
|
@@ -4816,7 +4843,7 @@ public static function count($columns = '*'){ | |
* Retrieve the minimum value of a given column. | ||
* | ||
* @param string $column | ||
* @return float|int | ||
* @return mixed | ||
* @static | ||
*/ | ||
public static function min($column){ | ||
|
@@ -4827,7 +4854,7 @@ public static function min($column){ | |
* Retrieve the maximum value of a given column. | ||
* | ||
* @param string $column | ||
* @return float|int | ||
* @return mixed | ||
* @static | ||
*/ | ||
public static function max($column){ | ||
|
@@ -4838,7 +4865,7 @@ public static function max($column){ | |
* Retrieve the sum of the values of a given column. | ||
* | ||
* @param string $column | ||
* @return float|int | ||
* @return mixed | ||
* @static | ||
*/ | ||
public static function sum($column){ | ||
|
@@ -4849,7 +4876,7 @@ public static function sum($column){ | |
* Retrieve the average of the values of a given column. | ||
* | ||
* @param string $column | ||
* @return float|int | ||
* @return mixed | ||
* @static | ||
*/ | ||
public static function avg($column){ | ||
|
@@ -4860,7 +4887,7 @@ public static function avg($column){ | |
* Alias for the "avg" method. | ||
* | ||
* @param string $column | ||
* @return float|int | ||
* @return mixed | ||
* @static | ||
*/ | ||
public static function average($column){ | ||
|
@@ -4872,13 +4899,25 @@ public static function average($column){ | |
* | ||
* @param string $function | ||
* @param array $columns | ||
* @return float|int | ||
* @return mixed | ||
* @static | ||
*/ | ||
public static function aggregate($function, $columns = array()){ | ||
return \Illuminate\Database\Query\Builder::aggregate($function, $columns); | ||
} | ||
|
||
/** | ||
* Execute a numeric aggregate function on the database. | ||
* | ||
* @param string $function | ||
* @param array $columns | ||
* @return float|int | ||
* @static | ||
*/ | ||
public static function numericAggregate($function, $columns = array()){ | ||
return \Illuminate\Database\Query\Builder::numericAggregate($function, $columns); | ||
} | ||
|
||
/** | ||
* Insert a new record into the database. | ||
* | ||
|
@@ -5747,7 +5786,7 @@ public static function resolvePolicy($class){ | |
} | ||
|
||
/** | ||
* Get a guard instance for the given user. | ||
* Get a gate instance for the given user. | ||
* | ||
* @param \Illuminate\Contracts\Auth\Authenticatable|mixed $user | ||
* @return static | ||
|
@@ -7172,7 +7211,7 @@ public static function input($key = null, $default = null){ | |
} | ||
|
||
/** | ||
* Get a subset of the items from the input data. | ||
* Get a subset containing the provided keys with values from the input data. | ||
* | ||
* @param array|mixed $keys | ||
* @return array | ||
|
@@ -7254,7 +7293,7 @@ public static function allFiles(){ | |
* | ||
* @param string $key | ||
* @param mixed $default | ||
* @return \Symfony\Component\HttpFoundation\File\UploadedFile|array|null | ||
* @return \Illuminate\Http\UploadedFile|array|null | ||
* @static | ||
*/ | ||
public static function file($key = null, $default = null){ | ||
|
@@ -11560,7 +11599,7 @@ public static function input($key = null, $default = null){ | |
} | ||
|
||
/** | ||
* Get a subset of the items from the input data. | ||
* Get a subset containing the provided keys with values from the input data. | ||
* | ||
* @param array|mixed $keys | ||
* @return array | ||
|
@@ -11642,7 +11681,7 @@ public static function allFiles(){ | |
* | ||
* @param string $key | ||
* @param mixed $default | ||
* @return \Symfony\Component\HttpFoundation\File\UploadedFile|array|null | ||
* @return \Illuminate\Http\UploadedFile|array|null | ||
* @static | ||
*/ | ||
public static function file($key = null, $default = null){ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.