Your Shop creates, verify user
This commit is contained in:
parent
c129a44383
commit
ccc2af4bf7
76 changed files with 3728 additions and 1477 deletions
153
_ide_helper.php
153
_ide_helper.php
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
/**
|
||||
* A helper file for Laravel 5, to provide autocomplete information to your IDE
|
||||
* Generated for Laravel 5.6.39 on 2018-11-22 15:17:35.
|
||||
* Generated for Laravel 5.6.39 on 2019-01-03 18:54:52.
|
||||
*
|
||||
* This file should not be included in your code, only analyzed by your IDE!
|
||||
*
|
||||
|
|
@ -6034,12 +6034,12 @@ namespace Illuminate\Support\Facades {
|
|||
*
|
||||
* @param string $message The log message
|
||||
* @param array $context The log context
|
||||
* @return Boolean Whether the record has been processed
|
||||
* @return bool Whether the record has been processed
|
||||
* @static
|
||||
*/
|
||||
public static function debug($message, $context = array())
|
||||
{
|
||||
return \Monolog\Logger::debug($message, $context);
|
||||
return \Monolog\Logger::addDebug($message, $context);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -6047,12 +6047,12 @@ namespace Illuminate\Support\Facades {
|
|||
*
|
||||
* @param string $message The log message
|
||||
* @param array $context The log context
|
||||
* @return Boolean Whether the record has been processed
|
||||
* @return bool Whether the record has been processed
|
||||
* @static
|
||||
*/
|
||||
public static function info($message, $context = array())
|
||||
{
|
||||
return \Monolog\Logger::info($message, $context);
|
||||
return \Monolog\Logger::addInfo($message, $context);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -6060,12 +6060,12 @@ namespace Illuminate\Support\Facades {
|
|||
*
|
||||
* @param string $message The log message
|
||||
* @param array $context The log context
|
||||
* @return Boolean Whether the record has been processed
|
||||
* @return bool Whether the record has been processed
|
||||
* @static
|
||||
*/
|
||||
public static function notice($message, $context = array())
|
||||
{
|
||||
return \Monolog\Logger::notice($message, $context);
|
||||
return \Monolog\Logger::addNotice($message, $context);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -6073,12 +6073,12 @@ namespace Illuminate\Support\Facades {
|
|||
*
|
||||
* @param string $message The log message
|
||||
* @param array $context The log context
|
||||
* @return Boolean Whether the record has been processed
|
||||
* @return bool Whether the record has been processed
|
||||
* @static
|
||||
*/
|
||||
public static function warning($message, $context = array())
|
||||
{
|
||||
return \Monolog\Logger::warning($message, $context);
|
||||
return \Monolog\Logger::addWarning($message, $context);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -6086,12 +6086,12 @@ namespace Illuminate\Support\Facades {
|
|||
*
|
||||
* @param string $message The log message
|
||||
* @param array $context The log context
|
||||
* @return Boolean Whether the record has been processed
|
||||
* @return bool Whether the record has been processed
|
||||
* @static
|
||||
*/
|
||||
public static function error($message, $context = array())
|
||||
{
|
||||
return \Monolog\Logger::error($message, $context);
|
||||
return \Monolog\Logger::addError($message, $context);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -6099,12 +6099,12 @@ namespace Illuminate\Support\Facades {
|
|||
*
|
||||
* @param string $message The log message
|
||||
* @param array $context The log context
|
||||
* @return Boolean Whether the record has been processed
|
||||
* @return bool Whether the record has been processed
|
||||
* @static
|
||||
*/
|
||||
public static function critical($message, $context = array())
|
||||
{
|
||||
return \Monolog\Logger::critical($message, $context);
|
||||
return \Monolog\Logger::addCritical($message, $context);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -6112,12 +6112,12 @@ namespace Illuminate\Support\Facades {
|
|||
*
|
||||
* @param string $message The log message
|
||||
* @param array $context The log context
|
||||
* @return Boolean Whether the record has been processed
|
||||
* @return bool Whether the record has been processed
|
||||
* @static
|
||||
*/
|
||||
public static function alert($message, $context = array())
|
||||
{
|
||||
return \Monolog\Logger::alert($message, $context);
|
||||
return \Monolog\Logger::addAlert($message, $context);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -6125,12 +6125,12 @@ namespace Illuminate\Support\Facades {
|
|||
*
|
||||
* @param string $message The log message
|
||||
* @param array $context The log context
|
||||
* @return Boolean Whether the record has been processed
|
||||
* @return bool Whether the record has been processed
|
||||
* @static
|
||||
*/
|
||||
public static function emergency($message, $context = array())
|
||||
{
|
||||
return \Monolog\Logger::emergency($message, $context);
|
||||
return \Monolog\Logger::addEmergency($message, $context);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -8934,7 +8934,7 @@ namespace Illuminate\Support\Facades {
|
|||
* Checks whether the method is cacheable or not.
|
||||
*
|
||||
* @see https://tools.ietf.org/html/rfc7231#section-4.2.3
|
||||
* @return bool
|
||||
* @return bool True for GET and HEAD, false otherwise
|
||||
* @static
|
||||
*/
|
||||
public static function isMethodCacheable()
|
||||
|
|
@ -9566,7 +9566,7 @@ namespace Illuminate\Support\Facades {
|
|||
*/
|
||||
public static function validate($rules, $params = null)
|
||||
{
|
||||
return \Illuminate\Http\Request::validate($rules, $params);
|
||||
return \Illuminate\Http\Request::Illuminate\Foundation\Providers\{closure}($rules, $params);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -9576,7 +9576,7 @@ namespace Illuminate\Support\Facades {
|
|||
*/
|
||||
public static function hasValidSignature()
|
||||
{
|
||||
return \Illuminate\Http\Request::hasValidSignature();
|
||||
return \Illuminate\Http\Request::Illuminate\Foundation\Providers\{closure}();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -14789,7 +14789,7 @@ namespace Illuminate\Support\Facades {
|
|||
* Checks whether the method is cacheable or not.
|
||||
*
|
||||
* @see https://tools.ietf.org/html/rfc7231#section-4.2.3
|
||||
* @return bool
|
||||
* @return bool True for GET and HEAD, false otherwise
|
||||
* @static
|
||||
*/
|
||||
public static function isMethodCacheable()
|
||||
|
|
@ -15421,7 +15421,7 @@ namespace Illuminate\Support\Facades {
|
|||
*/
|
||||
public static function validate($rules, $params = null)
|
||||
{
|
||||
return \Illuminate\Http\Request::validate($rules, $params);
|
||||
return \Illuminate\Http\Request::Illuminate\Foundation\Providers\{closure}($rules, $params);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -15431,7 +15431,7 @@ namespace Illuminate\Support\Facades {
|
|||
*/
|
||||
public static function hasValidSignature()
|
||||
{
|
||||
return \Illuminate\Http\Request::hasValidSignature();
|
||||
return \Illuminate\Http\Request::Illuminate\Foundation\Providers\{closure}();
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -17412,6 +17412,16 @@ namespace App\Services\Facade {
|
|||
*/
|
||||
class Yard {
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function getTaxRate()
|
||||
{
|
||||
return \App\Services\Yard::getTaxRate();
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
|
|
@ -17437,6 +17447,26 @@ namespace App\Services\Facade {
|
|||
return \App\Services\Yard::shipping($decimals, $decimalPoint, $thousandSeperator);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function subtotalWithShipping($decimals = null, $decimalPoint = null, $thousandSeperator = null)
|
||||
{
|
||||
return \App\Services\Yard::subtotalWithShipping($decimals, $decimalPoint, $thousandSeperator);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function taxWithShipping($decimals = null, $decimalPoint = null, $thousandSeperator = null)
|
||||
{
|
||||
return \App\Services\Yard::taxWithShipping($decimals, $decimalPoint, $thousandSeperator);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
|
|
@ -17447,6 +17477,20 @@ namespace App\Services\Facade {
|
|||
return \App\Services\Yard::totalWithShipping($decimals, $decimalPoint, $thousandSeperator);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the total price of the items in the cart.
|
||||
*
|
||||
* @param int $decimals
|
||||
* @param string $decimalPoint
|
||||
* @param string $thousandSeperator
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function total($decimals = null, $decimalPoint = null, $thousandSeperator = null)
|
||||
{
|
||||
return \App\Services\Yard::total($decimals, $decimalPoint, $thousandSeperator);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the total tax of the items in the cart.
|
||||
*
|
||||
|
|
@ -17456,9 +17500,9 @@ namespace App\Services\Facade {
|
|||
* @return float
|
||||
* @static
|
||||
*/
|
||||
public static function taxWithShipping($decimals = null, $decimalPoint = null, $thousandSeperator = null)
|
||||
public static function tax($decimals = null, $decimalPoint = null, $thousandSeperator = null)
|
||||
{
|
||||
return \App\Services\Yard::taxWithShipping($decimals, $decimalPoint, $thousandSeperator);
|
||||
return \App\Services\Yard::tax($decimals, $decimalPoint, $thousandSeperator);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -17470,19 +17514,9 @@ namespace App\Services\Facade {
|
|||
* @return float
|
||||
* @static
|
||||
*/
|
||||
public static function subtotalWithShipping($decimals = null, $decimalPoint = null, $thousandSeperator = null)
|
||||
public static function subtotal($decimals = null, $decimalPoint = null, $thousandSeperator = null)
|
||||
{
|
||||
return \App\Services\Yard::subtotalWithShipping($decimals, $decimalPoint, $thousandSeperator);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
* @static
|
||||
*/
|
||||
public static function cardCalcSubTotal($price)
|
||||
{
|
||||
return \App\Services\Yard::cardCalcSubTotal($price);
|
||||
return \App\Services\Yard::subtotal($decimals, $decimalPoint, $thousandSeperator);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -17603,51 +17637,6 @@ namespace App\Services\Facade {
|
|||
return \App\Services\Yard::count();
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the total price of the items in the cart.
|
||||
*
|
||||
* @param int $decimals
|
||||
* @param string $decimalPoint
|
||||
* @param string $thousandSeperator
|
||||
* @return string
|
||||
* @static
|
||||
*/
|
||||
public static function total($decimals = null, $decimalPoint = null, $thousandSeperator = null)
|
||||
{
|
||||
//Method inherited from \Gloudemans\Shoppingcart\Cart
|
||||
return \App\Services\Yard::total($decimals, $decimalPoint, $thousandSeperator);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the total tax of the items in the cart.
|
||||
*
|
||||
* @param int $decimals
|
||||
* @param string $decimalPoint
|
||||
* @param string $thousandSeperator
|
||||
* @return float
|
||||
* @static
|
||||
*/
|
||||
public static function tax($decimals = null, $decimalPoint = null, $thousandSeperator = null)
|
||||
{
|
||||
//Method inherited from \Gloudemans\Shoppingcart\Cart
|
||||
return \App\Services\Yard::tax($decimals, $decimalPoint, $thousandSeperator);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the subtotal (total - tax) of the items in the cart.
|
||||
*
|
||||
* @param int $decimals
|
||||
* @param string $decimalPoint
|
||||
* @param string $thousandSeperator
|
||||
* @return float
|
||||
* @static
|
||||
*/
|
||||
public static function subtotal($decimals = null, $decimalPoint = null, $thousandSeperator = null)
|
||||
{
|
||||
//Method inherited from \Gloudemans\Shoppingcart\Cart
|
||||
return \App\Services\Yard::subtotal($decimals, $decimalPoint, $thousandSeperator);
|
||||
}
|
||||
|
||||
/**
|
||||
* Search the cart content for a cart item matching the given search closure.
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue