Completed
Push — master ( cc6609...1f9797 )
by Sergi Tur
02:03
created

createGoogleDriver()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
crap 2
1
<?php
2
3
namespace Acacha\LaravelSocial\Services;
4
5
use Acacha\LaravelSocial\Contracts\ConfigureSocialServicesFactory as Factory;
6
use Illuminate\Support\Manager;
7
8
/**
9
 * Class ConfigureSocialServicesManager.
10
 *
11
 * @package Acacha\LaravelSocial\Services
12
 */
13
class ConfigureSocialServicesManager extends Manager implements Factory
14
{
15
    /**
16
     * Supported social networks.
17
     *
18
     * @var array
19
     */
20
    public static $socialNetworks = ['Github', 'Facebook','Google','Twitter', 'Linkedin'];
21
22
    /**
23
     * Create a new manager instance.
24
     *
25
     * @param  \Illuminate\Foundation\Application  $app
26
     *
27
     */
28
    public function __construct($app)
29
    {
30
        parent::__construct($app);
31
    }
32
33
    /**
34
     * Get the default driver name.
35
     *
36
     * @return string
37
     */
38
    public function getDefaultDriver()
39
    {
40
        return 'github';
41
    }
42
43
    /**
44
     * Create an instance of the "github" social provider driver.
45
     *
46
     */
47
    protected function createGithubDriver()
48
    {
49
        return new ConfigureGithubSocialLogin();
50
    }
51
52
    /**
53
     * Create an instance of the "facebook" social provider driver.
54
     *
55
     */
56
    protected function createFacebookDriver()
57
    {
58
        return new ConfigureFacebookSocialLogin();
59
    }
60
61
    /**
62
     * Create an instance of the "google" social provider driver.
63
     *
64
     */
65
    protected function createGoogleDriver()
66
    {
67
        return new ConfigureGoogleSocialLogin();
68
    }
69
70
    /**
71
     * Create an instance of the "twitter" social provider driver.
72
     *
73
     */
74
    protected function createTwitterDriver()
75
    {
76
        return new ConfigureTwitterSocialLogin();
77
    }
78
79
    /**
80
     * Create an instance of the "linkedin" social provider driver.
81
     *
82
     */
83
    protected function createLinkedinDriver()
84
    {
85
        return new ConfigureLinkedinSocialLogin();
86
    }
87
}
88