Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. Call.php

function Call::getCallPlace

Returns short notation for callee place.

Return value

string

File

vendor/phpspec/prophecy/src/Prophecy/Call/Call.php, line 131

Class

Call
Call object.

Namespace

Prophecy\Call

Code

public function getCallPlace() {
    if (null === $this->file) {
        return 'unknown';
    }
    return sprintf('%s:%d', $this->file, $this->line);
}
RSS feed
Powered by Drupal