Skip to content

Commit 4e8f4af

Browse files
committed
Create CallableInterface.php
1 parent b947196 commit 4e8f4af

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/Kernel/CallableInterface.php

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
/**
3+
* @author : Jakiboy
4+
* @package : FloatPHP
5+
* @subpackage : Interfaces Kernel Component
6+
* @version : 1.1.0
7+
* @copyright : (c) 2018 - 2024 Jihad Sinnaour <[email protected]>
8+
* @link : https://floatphp.com
9+
* @license : MIT
10+
*
11+
* This file if a part of FloatPHP Framework.
12+
*/
13+
14+
namespace FloatPHP\Interfaces\Kernel;
15+
16+
interface CallableInterface
17+
{
18+
/**
19+
* Get extended view callables.
20+
*
21+
* @return array
22+
*/
23+
function getCallables() : array;
24+
}

0 commit comments

Comments
 (0)