Completed
Push — master ( 8f65ea...5b7584 )
by Kirill
03:23
created

GrumblerAchieve::handle()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
eloc 1
c 1
b 0
f 1
nc 1
nop 0
dl 0
loc 4
rs 10
1
<?php
2
/**
3
 * This file is part of GitterBot package.
4
 *
5
 * @author Serafim <[email protected]>
6
 * @date 11.10.2015 6:07
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
namespace Domains\Bot\Achievements;
12
13
use Domains\Karma;
14
use Interfaces\Gitter\Achieve\AbstractAchieve;
15
16
/**
17
 * Class GrumblerAchieve
18
 */
19
class GrumblerAchieve extends AbstractAchieve
20
{
21
    /**
22
     * @var string
23
     */
24
    public $title = 'Почётный ворчун';
25
26
    /**
27
     * @var string
28
     */
29
    public $description = 'Заворчит вас до смерти';
30
31
    /**
32
     * @var string
33
     */
34
    public $image = '//karma.laravel.su/img/achievements/grumbler.gif';
35
36
    /**
37
     * @throws \LogicException
38
     */
39
    public function handle()
40
    {
41
        // This special achievement
42
    }
43
}
44