mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-20 23:01:15 +02:00
13 lines
185 B
PHP
13 lines
185 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Proxy;
|
|
|
|
interface BankAccount
|
|
{
|
|
public function deposit(int $amount);
|
|
|
|
public function getBalance(): int;
|
|
}
|