<?php // Mock of your Exchange class - you did not post the structure so its fairly basic. class Exchange { /** * @var string */ private $fooVar = 'foo'; public function foo(): string { return 'foo'; } } class YourExchange extends Exchange { public function bar(): string { return $this->foo(); } } var_dump((new YourExchange())->bar());
You have javascript disabled. You will not be able to edit any code.
There are `>1` results