<?php class ThingManager { private function createThing($arg) { return new Thing($this, $arg); } public function doSomething() { return $this->createThing(1); } } class Thing { private $manager; private $otherArg; public function __construct(ThingManager $manager, $otherArg) { $this->manager = $manager; $this->otherArg = $otherArg; } }
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`