Completed
Push — master ( 2afe63...db6e9c )
by Christian
02:24
created

Git::getHookFiles()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 16
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 16
rs 9.4285
cc 2
eloc 9
nc 2
nop 0
1
<?php
2
3
namespace uuf6429\ElderBrother\Event;
4
5
class Git
6
{
7
    const APPLYPATCH_MSG = 'git:applypatch-msg';
8
    const PRE_APPLYPATCH = 'git:pre-applypatch';
9
    const POST_APPLYPATCH = 'git:post-applypatch';
10
    const PRE_COMMIT = 'git:pre-commit';
11
    const PREPARE_COMMIT_MSG = 'git:prepare-commit-msg';
12
    const COMMIT_MSG = 'git:commit-msg';
13
    const POST_COMMIT = 'git:post-commit';
14
    const PRE_REBASE = 'git:pre-rebase';
15
    const POST_CHECKOUT = 'git:post-checkout';
16
    const POST_MERGE = 'git:post-merge';
17
    const PRE_RECEIVE = 'git:pre-receive';
18
    const UPDATE = 'git:update';
19
    const POST_RECEIVE = 'git:post-receive';
20
    const POST_UPDATE = 'git:post-update';
21
    const PRE_AUTO_GC = 'git:pre-auto-gc';
22
    const POST_REWRITE = 'git:post-rewrite';
23
    const PRE_PUSH = 'git:pre-push';
24
}
25