Completed
Push — master ( 5b37e3...33118b )
by Mehmet
04:46
created

Application::__invoke()

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
ccs 0
cts 0
cp 0
c 0
b 0
f 0
1
<?php
2
declare(strict_types=1);
3
4
namespace Selami\Interfaces;
5
6
7
interface Application
8
{
9
    public function __invoke();
10
}