for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DicDoc;
/**
* Class CallerPosition
*
* @package DicDoc
*/
class CallerPosition
{
* @var
public $file;
public $line;
* CallerPosition constructor.
* @param $file
* @param $line
public function __construct($file, $line)
$this->file = $file;
$this->line = $line;
}
* @return mixed
public function getFile()
return $this->file;
public function getLine()
return $this->line;