Completed
Push — master ( 9464e0...f141df )
by Kirill
02:53
created

DocsAchieve::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
c 1
b 0
f 1
dl 0
loc 4
rs 10
cc 1
eloc 1
nc 1
nop 0
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 App\Subscribers\Achievements;
12
13
use App\Karma;
14
use App\Gitter\Achieve\AbstractAchieve;
15
16
/**
17
 * Class DocsAchieve
18
 * @package App\Achieve
19
 */
20
class DocsAchieve extends AbstractAchieve
21
{
22
    /**
23
     * @var string
24
     */
25
    public $title = 'Красава';
26
27
    /**
28
     * @var string
29
     */
30
    public $description = 'Помог переводить документацию. Настоящий мужик!';
31
32
    /**
33
     * @var string
34
     */
35
    public $image = '//karma.laravel.su/img/achievements/docs.gif';
36
37
    /**
38
     * @throws \LogicException
39
     */
40
    public function handle()
41
    {
42
        // Only manual addition
43
    }
44
}