MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: /home/cafsindia/snap.cafsinfotech.in/vendor/itsgoingd/clockwork/Clockwork/Helpers/StackFrame.php
<?php namespace Clockwork\Helpers;

// A single frame of a stack trace
class StackFrame
{
	public $call;
	public $function;
	public $line;
	public $file;
	public $class;
	public $object;
	public $type;
	public $args = [];
	public $shortPath;
	public $vendor;

	public function __construct(array $data = [], $basePath = '', $vendorPath = '')
	{
		foreach ($data as $key => $value) {
			$this->$key = $value;
		}

		$this->call = $this->formatCall();

		$this->shortPath = $this->file ? str_replace($basePath, '', $this->file) : null;
		$this->vendor = ($this->file && strpos($this->file, $vendorPath) === 0)
			? explode(DIRECTORY_SEPARATOR, str_replace($vendorPath, '', $this->file))[0] : null;
	}

	protected function formatCall()
	{
		if ($this->class) {
			return "{$this->class}{$this->type}{$this->function}()";
		} else {
			return "{$this->function}()";
		}
	}
}