mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-25 01:01:19 +02:00
11 lines
159 B
PHP
11 lines
159 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Proxy;
|
|
|
|
interface BankAccount
|
|
{
|
|
public function deposit(int $amount);
|
|
|
|
public function getBalance(): int;
|
|
}
|