<?php // Вендорский неймспейс class ShitClass { public function doShitStuff(string $thing) : string { return 'говно'; } } // Наш неймспейс interface MyGoodInterface { public function doCandyStuff(string $thing) : string; } // Наш неймспейс class MyGoodClass extends ShitCLass implements MyGoodInterface { public function doCandyStuff(string $thing) : string { return $this->doShitStuff($thing) . ', но сладкое'; } } $goodObject = new MyGoodClass; echo 'Я съел ' . $goodObject->doCandyStuff('сахар') . PHP_EOL;
You have javascript disabled. You will not be able to edit any code.