for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace mcorten87\rabbitmq_api\objects;
class CallerObjectInfo extends BaseObject
{
protected $file;
/**
* @return string
*/
public function getFile()
return $this->file;
}
public function __construct(string $file, string $value)
$this->file = $file;
parent::__construct($value);