RateInterface::getTokensPerSecond()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * This file is part of laravel-quota
5
 *
6
 * (c) David Faith <[email protected]>
7
 *
8
 * Full copyright and license information is available
9
 * in the LICENSE file distributed with this source code.
10
 */
11
12
namespace Projectmentor\Quota\Contracts;
13
14
/**
15
 * This is the quota factory interface.
16
 *
17
 * @author David Faith <[email protected]>
18
 */
19
interface RateInterface
20
{
21
    /**
22
     * Return the rate in tokens per second
23
     *
24
     * @return double
25
     */
26
    public function getTokensPerSecond();
27
}
0 ignored issues
show
Coding Style introduced by
As per coding style, files should not end with a newline character.

This check marks files that end in a newline character, i.e. an empy line.

Loading history...
28