GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

Cleanable
last analyzed

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 12
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
clean() 0 1 ?
1
<?php
2
/**
3
 * Pimf
4
 *
5
 * @copyright Copyright (c)  Gjero Krsteski (http://krsteski.de)
6
 * @license   http://opensource.org/licenses/MIT MIT License
7
 */
8
9
namespace Pimf\Contracts;
10
11
/**
12
 * A simply interface to delete all expired data from persistent storage of the instance.
13
 *
14
 * @package Contracts
15
 * @author  Gjero Krsteski <[email protected]>
16
 */
17
interface Cleanable
18
{
19
    /**
20
     * Delete all expired instance-data from persistent storage.
21
     *
22
     * @param int $expiration
23
     *
24
     * @return mixed
25
     */
26
    public function clean($expiration);
27
28
}
29