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
Pull Request — master (#34)
by Spencer
04:03
created

AbstractGenerator::__toString()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
namespace Nubs\RandomNameGenerator;
3
4
abstract class AbstractGenerator implements Generator
5
{
6
    /**
7
     * Alias for getName so that the generator can be directly stringified.
8
     *
9
     * Note that this will return a different name everytime it is cast to a
10
     * string.
11
     *
12
     * @api
13
     * @return string A random name.
14
     */
15
    public function __toString()
16
    {
17
        return $this->getName();
18
    }
19
}
20