GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 5f362f...2255c0 )
by Nicolas
05:24
created

migration_274   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
dl 0
loc 12
rs 10
c 0
b 0
f 0
wmc 2
lcom 0
cbo 1

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getVersion() 0 4 1
A getReleaseNotes() 0 4 1
1
<?php
2
3
    class migration_274 extends Migration
4
    {
5
        public static function getVersion()
6
        {
7
            return '2.7.4';
8
        }
9
10
        public static function getReleaseNotes()
11
        {
12
            return 'https://www.getsymphony.com/download/releases/version/2.7.4/';
13
        }
14
    }
15