1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
namespace iThemesSecurity\Ban_Hosts;
interface Repository_Ban extends Ban {
/** * Gets the id for the ban. * * @return int */ public function get_id();
/** * Gets the source * * @return string */ public function get_source();
/** * Gets the time this entry was created. * * @return \DateTimeImmutable */ public function get_created_at(); }
|