Completed
Push — master ( 367642...b5a2de )
by Minas
01:34
created

Payout::delete()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7

Duplication

Lines 7
Ratio 100 %

Importance

Changes 0
Metric Value
dl 7
loc 7
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
/**
3
 * EveryPay PHP Library
4
 */
5
6
namespace Everypay;
7
8
/**
9
 * Payout resource class.
10
 */
11 View Code Duplication
class Payout extends AbstractResource
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
12
{
13
    /**
14
     * API resource name.
15
     *
16
     * @var string
17
     */
18
    const RESOURCE_NAME = 'payouts';
19
20
    /**
21
     * Not avalable for this resource.
22
     *
23
     * @throws Everypay\Exception\RuntimeException
24
     */
25
    public static function create(array $params)
26
    {
27
        throw new Exception\RuntimeException(
28
            'Resource ' . ucfirst(static::RESOURCE_NAME) .
29
            ' does not support method ' . __METHOD__
30
        );
31
    }
32
33
    /**
34
     * Not avalable for this resource.
35
     *
36
     * @throws Everypay\Exception\RuntimeException
37
     */
38
    public static function update($token, array $params)
39
    {
40
        throw new Exception\RuntimeException(
41
            'Resource ' . ucfirst(static::RESOURCE_NAME) .
42
            ' does not support method ' . __METHOD__
43
        );
44
    }
45
46
    /**
47
     * Not avalable for this resource.
48
     *
49
     * @throws Everypay\Exception\RuntimeException
50
     */
51
    public static function delete($token, array $params = array())
52
    {
53
        throw new Exception\RuntimeException(
54
            'Resource ' . ucfirst(static::RESOURCE_NAME) .
55
            ' does not support method ' . __METHOD__
56
        );
57
    }
58
}
59