<?php
class Example {
public $variable;
public function foo() {
//some code
}
}
$obj = new Example();
$obj->variable = "Переменная";
class AnotherClass{
public function method(Example $obj) {
return $obj->variable;
}
}
$another = new AnotherClass();
echo $another->method($obj);
?>