<?php class Brands { public function create_brand_table(): void { echo __FUNCTION__, PHP_EOL; } public function delete_brand_table(): void { echo __FUNCTION__, PHP_EOL; } } class TablesManager { private $brands; public function __construct(Brands $brands) { $this->brands = $brands; } public function create_tables(): void { $this->brands->create_brand_table(); } public function delete_tables(): void { $this->brands->delete_brand_table(); } } $brands = new Brands(); $tables_manager = new TablesManager($brands); $tables_manager->create_tables(); $tables_manager->delete_tables();
You have javascript disabled. You will not be able to edit any code.