ALPHA 3.0.2

This commit is contained in:
TheGamecraft
2018-09-05 11:35:41 -04:00
parent 4dbdc8fd19
commit 8ef8057bfa
771 changed files with 9284 additions and 5857 deletions

0
vendor/laravel/framework/src/Illuminate/Support/Arr.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/App.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Artisan.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Auth.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Blade.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Cache.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Config.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Cookie.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Crypt.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/DB.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Event.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Facade.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/File.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Hash.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Input.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Lang.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Log.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Mail.php vendored Normal file → Executable file
View File

View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Queue.php vendored Normal file → Executable file
View File

View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Redis.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Request.php vendored Normal file → Executable file
View File

View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Route.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Schema.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/Session.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/URL.php vendored Normal file → Executable file
View File

View File

0
vendor/laravel/framework/src/Illuminate/Support/Facades/View.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Fluent.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/Manager.php vendored Normal file → Executable file
View File

0
vendor/laravel/framework/src/Illuminate/Support/MessageBag.php vendored Normal file → Executable file
View File

View File

View File

@@ -3,6 +3,7 @@
namespace Illuminate\Support;
use ArrayAccess;
use ArrayObject;
class Optional implements ArrayAccess
{
@@ -53,7 +54,7 @@ class Optional implements ArrayAccess
return isset($this->value->{$name});
}
if (is_array($this->value) || $this->value instanceof \ArrayObject) {
if (is_array($this->value) || $this->value instanceof ArrayObject) {
return isset($this->value[$name]);
}

0
vendor/laravel/framework/src/Illuminate/Support/Pluralizer.php vendored Normal file → Executable file
View File

2
vendor/laravel/framework/src/Illuminate/Support/ServiceProvider.php vendored Normal file → Executable file
View File

@@ -75,7 +75,7 @@ abstract class ServiceProvider
/**
* Register a view file namespace.
*
* @param string $path
* @param string|array $path
* @param string $namespace
* @return void
*/

0
vendor/laravel/framework/src/Illuminate/Support/helpers.php vendored Normal file → Executable file
View File