/home
/zaneg
/public_html
/vendor
/laravel
/framework
/src
/Illuminate
/Filesystem
/Filesystem.php
*
* @param string $path
* @return string
*/
public function hash($path)
{
return md5_file($path);
}
/**
* Write the contents of a file.
*
* @param string $path
* @param string $contents
* @param bool $lock
* @return int
*/
public function put($path, $contents, $lock = false)
{
return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
}
/**
* Write the contents of a file, replacing it atomically if it already exists.
*
* @param string $path
* @param string $content
* @return void
*/
public function replace($path, $content)
{
// If the path already exists and is a symlink, get the real path...
clearstatcache(true, $path);
$path = realpath($path) ?: $path;
$tempPath = tempnam(dirname($path), basename($path));
// Fix permissions of tempPath because `tempnam()` creates it with permissions set to 0600...
chmod($tempPath, 0777 - umask());
Arguments
"file_put_contents(): Only 0 of 196 bytes written, possibly out of free disk space"
/home
/zaneg
/public_html
/vendor
/laravel
/framework
/src
/Illuminate
/Filesystem
/Filesystem.php
*
* @param string $path
* @return string
*/
public function hash($path)
{
return md5_file($path);
}
/**
* Write the contents of a file.
*
* @param string $path
* @param string $contents
* @param bool $lock
* @return int
*/
public function put($path, $contents, $lock = false)
{
return file_put_contents($path, $contents, $lock ? LOCK_EX : 0);
}
/**
* Write the contents of a file, replacing it atomically if it already exists.
*
* @param string $path
* @param string $content
* @return void
*/
public function replace($path, $content)
{
// If the path already exists and is a symlink, get the real path...
clearstatcache(true, $path);
$path = realpath($path) ?: $path;
$tempPath = tempnam(dirname($path), basename($path));
// Fix permissions of tempPath because `tempnam()` creates it with permissions set to 0600...
chmod($tempPath, 0777 - umask());
Arguments
"/home/zaneg/public_html/storage/framework/sessions/72iiTJCgwC3nAp6fPhFCerCBja07qIRiHI99lQc4"
"a:3:{s:6:"_token";s:40:"dDdPzh4ufML8Cd6oRpDFbDXjFYhHjMjos1Ko1m12";s:9:"_previous";a:1:{s:3:"url";s:38:"http://zan-eg.com/services/categoury/7";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
2
/home
/zaneg
/public_html
/vendor
/laravel
/framework
/src
/Illuminate
/Session
/FileSessionHandler.php
/**
* {@inheritdoc}
*/
public function read($sessionId)
{
if ($this->files->isFile($path = $this->path.'/'.$sessionId)) {
if ($this->files->lastModified($path) >= Carbon::now()->subMinutes($this->minutes)->getTimestamp()) {
return $this->files->sharedGet($path);
}
}
return '';
}
/**
* {@inheritdoc}
*/
public function write($sessionId, $data)
{
$this->files->put($this->path.'/'.$sessionId, $data, true);
return true;
}
/**
* {@inheritdoc}
*/
public function destroy($sessionId)
{
$this->files->delete($this->path.'/'.$sessionId);
return true;
}
/**
* {@inheritdoc}
*/
public function gc($lifetime)
{
$files = Finder::create()
Arguments
"/home/zaneg/public_html/storage/framework/sessions/72iiTJCgwC3nAp6fPhFCerCBja07qIRiHI99lQc4"
"a:3:{s:6:"_token";s:40:"dDdPzh4ufML8Cd6oRpDFbDXjFYhHjMjos1Ko1m12";s:9:"_previous";a:1:{s:3:"url";s:38:"http://zan-eg.com/services/categoury/7";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
true
/home
/zaneg
/public_html
/vendor
/laravel
/framework
/src
/Illuminate
/Session
/Store.php
*
* @param string $data
* @return string
*/
protected function prepareForUnserialize($data)
{
return $data;
}
/**
* Save the session data to storage.
*
* @return bool
*/
public function save()
{
$this->ageFlashData();
$this->handler->write($this->getId(), $this->prepareForStorage(
serialize($this->attributes)
));
$this->started = false;
}
/**
* Prepare the serialized session data for storage.
*
* @param string $data
* @return string
*/
protected function prepareForStorage($data)
{
return $data;
}
/**
* Age the flash data for the session.
*
* @return void
Arguments
"72iiTJCgwC3nAp6fPhFCerCBja07qIRiHI99lQc4"
"a:3:{s:6:"_token";s:40:"dDdPzh4ufML8Cd6oRpDFbDXjFYhHjMjos1Ko1m12";s:9:"_previous";a:1:{s:3:"url";s:38:"http://zan-eg.com/services/categoury/7";}s:6:"_flash";a:2:{s:3:"old";a:0:{}s:3:"new";a:0:{}}}"
/home
/zaneg
/public_html
/vendor
/laravel
/framework
/src
/Illuminate
/Session
/Middleware
/StartSession.php
if ($this->sessionConfigured()) {
$this->storeCurrentUrl($request, $session);
$this->addCookieToResponse($response, $session);
}
return $response;
}
/**
* Perform any final actions for the request lifecycle.
*
* @param \Illuminate\Http\Request $request
* @param \Symfony\Component\HttpFoundation\Response $response
* @return void
*/
public function terminate($request, $response)
{
if ($this->sessionHandled && $this->sessionConfigured() && ! $this->usingCookieSessions()) {
$this->manager->driver()->save();
}
}
/**
* Start the session for the given request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Contracts\Session\Session
*/
protected function startSession(Request $request)
{
return tap($this->getSession($request), function ($session) use ($request) {
$session->setRequestOnHandler($request);
$session->start();
});
}
/**
* Get the session implementation from the manager.
/home
/zaneg
/public_html
/vendor
/laravel
/framework
/src
/Illuminate
/Foundation
/Http
/Kernel.php
* @return void
*/
protected function terminateMiddleware($request, $response)
{
$middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
$this->gatherRouteMiddleware($request),
$this->middleware
);
foreach ($middlewares as $middleware) {
if (! is_string($middleware)) {
continue;
}
[$name] = $this->parseMiddleware($middleware);
$instance = $this->app->make($name);
if (method_exists($instance, 'terminate')) {
$instance->terminate($request, $response);
}
}
}
/**
* Gather the route middleware for the given request.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
protected function gatherRouteMiddleware($request)
{
if ($route = $request->route()) {
return $this->router->gatherRouteMiddleware($route);
}
return [];
}
/**
Arguments
Request {
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) { …6}
#routeResolver: Closure() { …5}
+attributes: ParameterBag {}
+request: ParameterBag {#1}
+query: ParameterBag {#1}
+server: ServerBag {}
+files: FileBag {}
+cookies: ParameterBag {}
+headers: HeaderBag {}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/services/categoury/7"
#requestUri: "/services/categoury/7"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: Store {}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
Response {}
/home
/zaneg
/public_html
/vendor
/laravel
/framework
/src
/Illuminate
/Foundation
/Http
/Kernel.php
*/
protected function dispatchToRouter()
{
return function ($request) {
$this->app->instance('request', $request);
return $this->router->dispatch($request);
};
}
/**
* Call the terminate method on any terminable middleware.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Http\Response $response
* @return void
*/
public function terminate($request, $response)
{
$this->terminateMiddleware($request, $response);
$this->app->terminate();
}
/**
* Call the terminate method on any terminable middleware.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Http\Response $response
* @return void
*/
protected function terminateMiddleware($request, $response)
{
$middlewares = $this->app->shouldSkipMiddleware() ? [] : array_merge(
$this->gatherRouteMiddleware($request),
$this->middleware
);
foreach ($middlewares as $middleware) {
if (! is_string($middleware)) {
Arguments
Request {
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) { …6}
#routeResolver: Closure() { …5}
+attributes: ParameterBag {}
+request: ParameterBag {#1}
+query: ParameterBag {#1}
+server: ServerBag {}
+files: FileBag {}
+cookies: ParameterBag {}
+headers: HeaderBag {}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/services/categoury/7"
#requestUri: "/services/categoury/7"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: Store {}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
Response {}
/home
/zaneg
/public_html
/index.php
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
$response->send();
$kernel->terminate($request, $response);
Arguments
Request {
#json: null
#convertedFiles: null
#userResolver: Closure($guard = null) { …6}
#routeResolver: Closure() { …5}
+attributes: ParameterBag {}
+request: ParameterBag {#1}
+query: ParameterBag {#1}
+server: ServerBag {}
+files: FileBag {}
+cookies: ParameterBag {}
+headers: HeaderBag {}
#content: null
#languages: null
#charsets: null
#encodings: null
#acceptableContentTypes: array:1 [
0 => "*/*"
]
#pathInfo: "/services/categoury/7"
#requestUri: "/services/categoury/7"
#baseUrl: ""
#basePath: null
#method: "GET"
#format: null
#session: Store {}
#locale: null
#defaultLocale: "en"
-isHostValid: true
-isForwardedValid: true
basePath: ""
format: "html"
}
Response {}