public function Call::getCallPlace in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpspec/prophecy/src/Prophecy/Call/Call.php \Prophecy\Call\Call::getCallPlace()
Returns short notation for callee place.
Return value
string
File
- vendor/phpspec/ prophecy/ src/ Prophecy/ Call/ Call.php, line 119 
Class
- Call
- Call object.
Namespace
Prophecy\CallCode
public function getCallPlace() {
  if (null === $this->file) {
    return 'unknown';
  }
  return sprintf('%s:%d', $this->file, $this->line);
}