Completed
Push — master ( 70dfc9...fb2e0c )
by Michael
03:05
created
lib/Container/PimpleContainer.php 1 patch
Indentation   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -1,52 +1,52 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is a simple wrapper for Pimple so Yapeal is future proofed against
4
- * changes to it's API.
5
- *
6
- * PHP version 5.5
7
- *
8
- * This is a wrapper / adapter to Pimple. Ran into many problems in composer
9
- * etc with trying to use version 2.0.x or master from Pimple as most other
10
- * projects on Packagest require 1.1.x and there was no way to resolved the
11
- * conflicts.
12
- *
13
- * Original the way I (Michael Cummings) thought of to solve the conflict was
14
- * to just add copy of the Pimple file from version 2.0.0 into Yapeal itself
15
- * but did mean having to maintain it from then on and manually merging any
16
- * local changes with external ones from the main project which is NOT a good
17
- * long term way to do things.
18
- *
19
- * I decided I need a better solution and after a few weeks of looking at
20
- * submodules and the drawbacks with them I decided they would NOT work, but
21
- * did ran into ```git subtree``` which does seem to fit in to what was needed
22
- * and does NOT have the drawbacks that submodules had.
23
- *
24
- * This file is part of Yet Another Php Eve Api Library also know as Yapeal
25
- * which can be used to access the Eve Online API data and place it into a
26
- * database.
27
- * Copyright (C) 2014-2016 Michael Cummings
28
- *
29
- * This program is free software: you can redistribute it and/or modify it
30
- * under the terms of the GNU Lesser General Public License as published by the
31
- * Free Software Foundation, either version 3 of the License, or (at your
32
- * option) any later version.
33
- *
34
- * This program is distributed in the hope that it will be useful, but WITHOUT
35
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
36
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
37
- * for more details.
38
- *
39
- * You should have received a copy of the GNU Lesser General Public License
40
- * along with this program. If not, see
41
- * <http://www.gnu.org/licenses/>.
42
- *
43
- * You should be able to find a copy of this license in the LICENSE.md file. A
44
- * copy of the GNU GPL should also be available in the GNU-GPL.md file.
45
- *
46
- * @copyright 2014-2016 Michael Cummings
47
- * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
48
- * @author    Michael Cummings <[email protected]>
49
- */
3
+     * This file is a simple wrapper for Pimple so Yapeal is future proofed against
4
+     * changes to it's API.
5
+     *
6
+     * PHP version 5.5
7
+     *
8
+     * This is a wrapper / adapter to Pimple. Ran into many problems in composer
9
+     * etc with trying to use version 2.0.x or master from Pimple as most other
10
+     * projects on Packagest require 1.1.x and there was no way to resolved the
11
+     * conflicts.
12
+     *
13
+     * Original the way I (Michael Cummings) thought of to solve the conflict was
14
+     * to just add copy of the Pimple file from version 2.0.0 into Yapeal itself
15
+     * but did mean having to maintain it from then on and manually merging any
16
+     * local changes with external ones from the main project which is NOT a good
17
+     * long term way to do things.
18
+     *
19
+     * I decided I need a better solution and after a few weeks of looking at
20
+     * submodules and the drawbacks with them I decided they would NOT work, but
21
+     * did ran into ```git subtree``` which does seem to fit in to what was needed
22
+     * and does NOT have the drawbacks that submodules had.
23
+     *
24
+     * This file is part of Yet Another Php Eve Api Library also know as Yapeal
25
+     * which can be used to access the Eve Online API data and place it into a
26
+     * database.
27
+     * Copyright (C) 2014-2016 Michael Cummings
28
+     *
29
+     * This program is free software: you can redistribute it and/or modify it
30
+     * under the terms of the GNU Lesser General Public License as published by the
31
+     * Free Software Foundation, either version 3 of the License, or (at your
32
+     * option) any later version.
33
+     *
34
+     * This program is distributed in the hope that it will be useful, but WITHOUT
35
+     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
36
+     * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
37
+     * for more details.
38
+     *
39
+     * You should have received a copy of the GNU Lesser General Public License
40
+     * along with this program. If not, see
41
+     * <http://www.gnu.org/licenses/>.
42
+     *
43
+     * You should be able to find a copy of this license in the LICENSE.md file. A
44
+     * copy of the GNU GPL should also be available in the GNU-GPL.md file.
45
+     *
46
+     * @copyright 2014-2016 Michael Cummings
47
+     * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
48
+     * @author    Michael Cummings <[email protected]>
49
+     */
50 50
 namespace Yapeal\Container;
51 51
 
52 52
 use Pimple\Container;
Please login to merge, or discard this patch.
lib/Container/ServiceCallableTrait.php 1 patch
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -1,36 +1,36 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Contains ServiceCallableTrait Trait.
4
- *
5
- * PHP version 5.5
6
- *
7
- * LICENSE:
8
- * This file is part of Yet Another Php Eve Api Library also know as Yapeal
9
- * which can be used to access the Eve Online API data and place it into a
10
- * database.
11
- * Copyright (C) 2014-2016 Michael Cummings
12
- *
13
- * This program is free software: you can redistribute it and/or modify it
14
- * under the terms of the GNU Lesser General Public License as published by the
15
- * Free Software Foundation, either version 3 of the License, or (at your
16
- * option) any later version.
17
- *
18
- * This program is distributed in the hope that it will be useful, but WITHOUT
19
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
21
- * for more details.
22
- *
23
- * You should have received a copy of the GNU Lesser General Public License
24
- * along with this program. If not, see
25
- * <http://www.gnu.org/licenses/>.
26
- *
27
- * You should be able to find a copy of this license in the LICENSE.md file. A
28
- * copy of the GNU GPL should also be available in the GNU-GPL.md file.
29
- *
30
- * @copyright 2014-2016 Michael Cummings
31
- * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
32
- * @author    Michael Cummings <[email protected]>
33
- */
3
+     * Contains ServiceCallableTrait Trait.
4
+     *
5
+     * PHP version 5.5
6
+     *
7
+     * LICENSE:
8
+     * This file is part of Yet Another Php Eve Api Library also know as Yapeal
9
+     * which can be used to access the Eve Online API data and place it into a
10
+     * database.
11
+     * Copyright (C) 2014-2016 Michael Cummings
12
+     *
13
+     * This program is free software: you can redistribute it and/or modify it
14
+     * under the terms of the GNU Lesser General Public License as published by the
15
+     * Free Software Foundation, either version 3 of the License, or (at your
16
+     * option) any later version.
17
+     *
18
+     * This program is distributed in the hope that it will be useful, but WITHOUT
19
+     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
+     * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
21
+     * for more details.
22
+     *
23
+     * You should have received a copy of the GNU Lesser General Public License
24
+     * along with this program. If not, see
25
+     * <http://www.gnu.org/licenses/>.
26
+     *
27
+     * You should be able to find a copy of this license in the LICENSE.md file. A
28
+     * copy of the GNU GPL should also be available in the GNU-GPL.md file.
29
+     *
30
+     * @copyright 2014-2016 Michael Cummings
31
+     * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
32
+     * @author    Michael Cummings <[email protected]>
33
+     */
34 34
 namespace Yapeal\Container;
35 35
 
36 36
 /**
Please login to merge, or discard this patch.
lib/EveApi/Account/APIKeyInfo.php 1 patch
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -1,36 +1,36 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Contains APIKeyInfo class.
4
- *
5
- * PHP version 5.4
6
- *
7
- * LICENSE:
8
- * This file is part of Yet Another Php Eve Api Library also know as Yapeal
9
- * which can be used to access the Eve Online API data and place it into a
10
- * database.
11
- * Copyright (C) 2016 Michael Cummings
12
- *
13
- * This program is free software: you can redistribute it and/or modify it
14
- * under the terms of the GNU Lesser General Public License as published by the
15
- * Free Software Foundation, either version 3 of the License, or (at your
16
- * option) any later version.
17
- *
18
- * This program is distributed in the hope that it will be useful, but WITHOUT
19
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
21
- * for more details.
22
- *
23
- * You should have received a copy of the GNU Lesser General Public License
24
- * along with this program. If not, see
25
- * <http://www.gnu.org/licenses/>.
26
- *
27
- * You should be able to find a copy of this license in the LICENSE.md file. A
28
- * copy of the GNU GPL should also be available in the GNU-GPL.md file.
29
- *
30
- * @copyright 2016 Michael Cummings
31
- * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
32
- * @author    Michael Cummings <[email protected]>
33
- */
3
+     * Contains APIKeyInfo class.
4
+     *
5
+     * PHP version 5.4
6
+     *
7
+     * LICENSE:
8
+     * This file is part of Yet Another Php Eve Api Library also know as Yapeal
9
+     * which can be used to access the Eve Online API data and place it into a
10
+     * database.
11
+     * Copyright (C) 2016 Michael Cummings
12
+     *
13
+     * This program is free software: you can redistribute it and/or modify it
14
+     * under the terms of the GNU Lesser General Public License as published by the
15
+     * Free Software Foundation, either version 3 of the License, or (at your
16
+     * option) any later version.
17
+     *
18
+     * This program is distributed in the hope that it will be useful, but WITHOUT
19
+     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
+     * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
21
+     * for more details.
22
+     *
23
+     * You should have received a copy of the GNU Lesser General Public License
24
+     * along with this program. If not, see
25
+     * <http://www.gnu.org/licenses/>.
26
+     *
27
+     * You should be able to find a copy of this license in the LICENSE.md file. A
28
+     * copy of the GNU GPL should also be available in the GNU-GPL.md file.
29
+     *
30
+     * @copyright 2016 Michael Cummings
31
+     * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
32
+     * @author    Michael Cummings <[email protected]>
33
+     */
34 34
 namespace Yapeal\EveApi\Account;
35 35
 
36 36
 use PDO;
Please login to merge, or discard this patch.
lib/EveApi/Account/AccountSection.php 1 patch
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -1,36 +1,36 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Contains AccountSection class.
4
- *
5
- * PHP version 5.5
6
- *
7
- * LICENSE:
8
- * This file is part of Yet Another Php Eve Api Library also know as Yapeal
9
- * which can be used to access the Eve Online API data and place it into a
10
- * database.
11
- * Copyright (C) 2015-2016 Michael Cummings
12
- *
13
- * This program is free software: you can redistribute it and/or modify it
14
- * under the terms of the GNU Lesser General Public License as published by the
15
- * Free Software Foundation, either version 3 of the License, or (at your
16
- * option) any later version.
17
- *
18
- * This program is distributed in the hope that it will be useful, but WITHOUT
19
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
21
- * for more details.
22
- *
23
- * You should have received a copy of the GNU Lesser General Public License
24
- * along with this program. If not, see
25
- * <http://www.gnu.org/licenses/>.
26
- *
27
- * You should be able to find a copy of this license in the LICENSE.md file. A
28
- * copy of the GNU GPL should also be available in the GNU-GPL.md file.
29
- *
30
- * @copyright 2015-2016 Michael Cummings
31
- * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
32
- * @author    Michael Cummings <[email protected]>
33
- */
3
+     * Contains AccountSection class.
4
+     *
5
+     * PHP version 5.5
6
+     *
7
+     * LICENSE:
8
+     * This file is part of Yet Another Php Eve Api Library also know as Yapeal
9
+     * which can be used to access the Eve Online API data and place it into a
10
+     * database.
11
+     * Copyright (C) 2015-2016 Michael Cummings
12
+     *
13
+     * This program is free software: you can redistribute it and/or modify it
14
+     * under the terms of the GNU Lesser General Public License as published by the
15
+     * Free Software Foundation, either version 3 of the License, or (at your
16
+     * option) any later version.
17
+     *
18
+     * This program is distributed in the hope that it will be useful, but WITHOUT
19
+     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
+     * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
21
+     * for more details.
22
+     *
23
+     * You should have received a copy of the GNU Lesser General Public License
24
+     * along with this program. If not, see
25
+     * <http://www.gnu.org/licenses/>.
26
+     *
27
+     * You should be able to find a copy of this license in the LICENSE.md file. A
28
+     * copy of the GNU GPL should also be available in the GNU-GPL.md file.
29
+     *
30
+     * @copyright 2015-2016 Michael Cummings
31
+     * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
32
+     * @author    Michael Cummings <[email protected]>
33
+     */
34 34
 namespace Yapeal\EveApi\Account;
35 35
 
36 36
 use Yapeal\EveApi\CommonEveApiTrait;
Please login to merge, or discard this patch.
lib/EveApi/Account/AccountStatus.php 1 patch
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -1,36 +1,36 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Contains AccountStatus class.
4
- *
5
- * PHP version 5.4
6
- *
7
- * LICENSE:
8
- * This file is part of Yet Another Php Eve Api Library also know as Yapeal
9
- * which can be used to access the Eve Online API data and place it into a
10
- * database.
11
- * Copyright (C) 2016 Michael Cummings
12
- *
13
- * This program is free software: you can redistribute it and/or modify it
14
- * under the terms of the GNU Lesser General Public License as published by the
15
- * Free Software Foundation, either version 3 of the License, or (at your
16
- * option) any later version.
17
- *
18
- * This program is distributed in the hope that it will be useful, but WITHOUT
19
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
21
- * for more details.
22
- *
23
- * You should have received a copy of the GNU Lesser General Public License
24
- * along with this program. If not, see
25
- * <http://www.gnu.org/licenses/>.
26
- *
27
- * You should be able to find a copy of this license in the LICENSE.md file. A
28
- * copy of the GNU GPL should also be available in the GNU-GPL.md file.
29
- *
30
- * @copyright 2016 Michael Cummings
31
- * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
32
- * @author    Michael Cummings <[email protected]>
33
- */
3
+     * Contains AccountStatus class.
4
+     *
5
+     * PHP version 5.4
6
+     *
7
+     * LICENSE:
8
+     * This file is part of Yet Another Php Eve Api Library also know as Yapeal
9
+     * which can be used to access the Eve Online API data and place it into a
10
+     * database.
11
+     * Copyright (C) 2016 Michael Cummings
12
+     *
13
+     * This program is free software: you can redistribute it and/or modify it
14
+     * under the terms of the GNU Lesser General Public License as published by the
15
+     * Free Software Foundation, either version 3 of the License, or (at your
16
+     * option) any later version.
17
+     *
18
+     * This program is distributed in the hope that it will be useful, but WITHOUT
19
+     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
+     * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
21
+     * for more details.
22
+     *
23
+     * You should have received a copy of the GNU Lesser General Public License
24
+     * along with this program. If not, see
25
+     * <http://www.gnu.org/licenses/>.
26
+     *
27
+     * You should be able to find a copy of this license in the LICENSE.md file. A
28
+     * copy of the GNU GPL should also be available in the GNU-GPL.md file.
29
+     *
30
+     * @copyright 2016 Michael Cummings
31
+     * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
32
+     * @author    Michael Cummings <[email protected]>
33
+     */
34 34
 namespace Yapeal\EveApi\Account;
35 35
 
36 36
 use PDO;
Please login to merge, or discard this patch.
lib/EveApi/Api/ApiSection.php 1 patch
Indentation   +31 added lines, -31 removed lines patch added patch discarded remove patch
@@ -1,36 +1,36 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Contains ApiSection class.
4
- *
5
- * PHP version 5.5
6
- *
7
- * LICENSE:
8
- * This file is part of Yet Another Php Eve Api Library also know as Yapeal
9
- * which can be used to access the Eve Online API data and place it into a
10
- * database.
11
- * Copyright (C) 2015-2016 Michael Cummings
12
- *
13
- * This program is free software: you can redistribute it and/or modify it
14
- * under the terms of the GNU Lesser General Public License as published by the
15
- * Free Software Foundation, either version 3 of the License, or (at your
16
- * option) any later version.
17
- *
18
- * This program is distributed in the hope that it will be useful, but WITHOUT
19
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
21
- * for more details.
22
- *
23
- * You should have received a copy of the GNU Lesser General Public License
24
- * along with this program. If not, see
25
- * <http://www.gnu.org/licenses/>.
26
- *
27
- * You should be able to find a copy of this license in the LICENSE.md file. A
28
- * copy of the GNU GPL should also be available in the GNU-GPL.md file.
29
- *
30
- * @copyright 2015-2016 Michael Cummings
31
- * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
32
- * @author    Michael Cummings <[email protected]>
33
- */
3
+     * Contains ApiSection class.
4
+     *
5
+     * PHP version 5.5
6
+     *
7
+     * LICENSE:
8
+     * This file is part of Yet Another Php Eve Api Library also know as Yapeal
9
+     * which can be used to access the Eve Online API data and place it into a
10
+     * database.
11
+     * Copyright (C) 2015-2016 Michael Cummings
12
+     *
13
+     * This program is free software: you can redistribute it and/or modify it
14
+     * under the terms of the GNU Lesser General Public License as published by the
15
+     * Free Software Foundation, either version 3 of the License, or (at your
16
+     * option) any later version.
17
+     *
18
+     * This program is distributed in the hope that it will be useful, but WITHOUT
19
+     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
+     * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
21
+     * for more details.
22
+     *
23
+     * You should have received a copy of the GNU Lesser General Public License
24
+     * along with this program. If not, see
25
+     * <http://www.gnu.org/licenses/>.
26
+     *
27
+     * You should be able to find a copy of this license in the LICENSE.md file. A
28
+     * copy of the GNU GPL should also be available in the GNU-GPL.md file.
29
+     *
30
+     * @copyright 2015-2016 Michael Cummings
31
+     * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
32
+     * @author    Michael Cummings <[email protected]>
33
+     */
34 34
 namespace Yapeal\EveApi\Api;
35 35
 
36 36
 use Yapeal\EveApi\CommonEveApiTrait;
Please login to merge, or discard this patch.
lib/EveApi/Api/CallList.php 1 patch
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -1,36 +1,36 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Contains CallList class.
4
- *
5
- * PHP version 5.4
6
- *
7
- * LICENSE:
8
- * This file is part of Yet Another Php Eve Api Library also know as Yapeal
9
- * which can be used to access the Eve Online API data and place it into a
10
- * database.
11
- * Copyright (C) 2016 Michael Cummings
12
- *
13
- * This program is free software: you can redistribute it and/or modify it
14
- * under the terms of the GNU Lesser General Public License as published by the
15
- * Free Software Foundation, either version 3 of the License, or (at your
16
- * option) any later version.
17
- *
18
- * This program is distributed in the hope that it will be useful, but WITHOUT
19
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
21
- * for more details.
22
- *
23
- * You should have received a copy of the GNU Lesser General Public License
24
- * along with this program. If not, see
25
- * <http://www.gnu.org/licenses/>.
26
- *
27
- * You should be able to find a copy of this license in the LICENSE.md file. A
28
- * copy of the GNU GPL should also be available in the GNU-GPL.md file.
29
- *
30
- * @copyright 2016 Michael Cummings
31
- * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
32
- * @author    Michael Cummings <[email protected]>
33
- */
3
+     * Contains CallList class.
4
+     *
5
+     * PHP version 5.4
6
+     *
7
+     * LICENSE:
8
+     * This file is part of Yet Another Php Eve Api Library also know as Yapeal
9
+     * which can be used to access the Eve Online API data and place it into a
10
+     * database.
11
+     * Copyright (C) 2016 Michael Cummings
12
+     *
13
+     * This program is free software: you can redistribute it and/or modify it
14
+     * under the terms of the GNU Lesser General Public License as published by the
15
+     * Free Software Foundation, either version 3 of the License, or (at your
16
+     * option) any later version.
17
+     *
18
+     * This program is distributed in the hope that it will be useful, but WITHOUT
19
+     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
+     * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
21
+     * for more details.
22
+     *
23
+     * You should have received a copy of the GNU Lesser General Public License
24
+     * along with this program. If not, see
25
+     * <http://www.gnu.org/licenses/>.
26
+     *
27
+     * You should be able to find a copy of this license in the LICENSE.md file. A
28
+     * copy of the GNU GPL should also be available in the GNU-GPL.md file.
29
+     *
30
+     * @copyright 2016 Michael Cummings
31
+     * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
32
+     * @author    Michael Cummings <[email protected]>
33
+     */
34 34
 namespace Yapeal\EveApi\Api;
35 35
 
36 36
 use PDOException;
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
     }
99 99
     /**
100 100
      * @param string $xml
101
-         *
101
+     *
102 102
      * @return self Fluent interface.
103 103
      * @throws \LogicException
104 104
      */
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
     }
122 122
     /**
123 123
      * @param string $xml
124
-         *
124
+     *
125 125
      * @return self Fluent interface.
126 126
      * @throws \LogicException
127 127
      */
Please login to merge, or discard this patch.
lib/EveApi/Char/CharSection.php 1 patch
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -1,32 +1,32 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Contains CharSection class.
4
- *
5
- * PHP version 5.4
6
- *
7
- * LICENSE:
8
- * This file is part of Yet Another Php Eve Api Library also know as Yapeal which can be used to access the Eve Online
9
- * API data and place it into a database.
10
- * Copyright (C) 2015-2016 Michael Cummings
11
- *
12
- * This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
13
- * Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option)
14
- * any later version.
15
- *
16
- * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
17
- * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
18
- * details.
19
- *
20
- * You should have received a copy of the GNU Lesser General Public License along with this program. If not, see
21
- * <http://www.gnu.org/licenses/>.
22
- *
23
- * You should be able to find a copy of this license in the LICENSE.md file. A copy of the GNU GPL should also be
24
- * available in the GNU-GPL.md file.
25
- *
26
- * @copyright 2015-2016 Michael Cummings
27
- * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
28
- * @author    Michael Cummings <[email protected]>
29
- */
3
+     * Contains CharSection class.
4
+     *
5
+     * PHP version 5.4
6
+     *
7
+     * LICENSE:
8
+     * This file is part of Yet Another Php Eve Api Library also know as Yapeal which can be used to access the Eve Online
9
+     * API data and place it into a database.
10
+     * Copyright (C) 2015-2016 Michael Cummings
11
+     *
12
+     * This program is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General
13
+     * Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option)
14
+     * any later version.
15
+     *
16
+     * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
17
+     * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
18
+     * details.
19
+     *
20
+     * You should have received a copy of the GNU Lesser General Public License along with this program. If not, see
21
+     * <http://www.gnu.org/licenses/>.
22
+     *
23
+     * You should be able to find a copy of this license in the LICENSE.md file. A copy of the GNU GPL should also be
24
+     * available in the GNU-GPL.md file.
25
+     *
26
+     * @copyright 2015-2016 Michael Cummings
27
+     * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
28
+     * @author    Michael Cummings <[email protected]>
29
+     */
30 30
 namespace Yapeal\EveApi\Char;
31 31
 
32 32
 use PDO;
Please login to merge, or discard this patch.
lib/EveApi/Char/ContactList.php 1 patch
Indentation   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -1,36 +1,36 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Contains ContactList class.
4
- *
5
- * PHP version 5.4
6
- *
7
- * LICENSE:
8
- * This file is part of Yet Another Php Eve Api Library also know as Yapeal
9
- * which can be used to access the Eve Online API data and place it into a
10
- * database.
11
- * Copyright (C) 2016 Michael Cummings
12
- *
13
- * This program is free software: you can redistribute it and/or modify it
14
- * under the terms of the GNU Lesser General Public License as published by the
15
- * Free Software Foundation, either version 3 of the License, or (at your
16
- * option) any later version.
17
- *
18
- * This program is distributed in the hope that it will be useful, but WITHOUT
19
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
21
- * for more details.
22
- *
23
- * You should have received a copy of the GNU Lesser General Public License
24
- * along with this program. If not, see
25
- * <http://www.gnu.org/licenses/>.
26
- *
27
- * You should be able to find a copy of this license in the LICENSE.md file. A
28
- * copy of the GNU GPL should also be available in the GNU-GPL.md file.
29
- *
30
- * @copyright 2016 Michael Cummings
31
- * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
32
- * @author    Michael Cummings <[email protected]>
33
- */
3
+     * Contains ContactList class.
4
+     *
5
+     * PHP version 5.4
6
+     *
7
+     * LICENSE:
8
+     * This file is part of Yet Another Php Eve Api Library also know as Yapeal
9
+     * which can be used to access the Eve Online API data and place it into a
10
+     * database.
11
+     * Copyright (C) 2016 Michael Cummings
12
+     *
13
+     * This program is free software: you can redistribute it and/or modify it
14
+     * under the terms of the GNU Lesser General Public License as published by the
15
+     * Free Software Foundation, either version 3 of the License, or (at your
16
+     * option) any later version.
17
+     *
18
+     * This program is distributed in the hope that it will be useful, but WITHOUT
19
+     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20
+     * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
21
+     * for more details.
22
+     *
23
+     * You should have received a copy of the GNU Lesser General Public License
24
+     * along with this program. If not, see
25
+     * <http://www.gnu.org/licenses/>.
26
+     *
27
+     * You should be able to find a copy of this license in the LICENSE.md file. A
28
+     * copy of the GNU GPL should also be available in the GNU-GPL.md file.
29
+     *
30
+     * @copyright 2016 Michael Cummings
31
+     * @license   http://www.gnu.org/copyleft/lesser.html GNU LGPL
32
+     * @author    Michael Cummings <[email protected]>
33
+     */
34 34
 namespace Yapeal\EveApi\Char;
35 35
 
36 36
 use PDOException;
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
     }
104 104
     /**
105 105
      * @param string $xml
106
-         * @param string $ownerID
106
+     * @param string $ownerID
107 107
      *
108 108
      * @return self Fluent interface.
109 109
      * @throws \LogicException
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
     }
128 128
     /**
129 129
      * @param string $xml
130
-         * @param string $ownerID
130
+     * @param string $ownerID
131 131
      *
132 132
      * @return self Fluent interface.
133 133
      * @throws \LogicException
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
     }
155 155
     /**
156 156
      * @param string $xml
157
-         * @param string $ownerID
157
+     * @param string $ownerID
158 158
      *
159 159
      * @return self Fluent interface.
160 160
      * @throws \LogicException
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
     }
179 179
     /**
180 180
      * @param string $xml
181
-         * @param string $ownerID
181
+     * @param string $ownerID
182 182
      *
183 183
      * @return self Fluent interface.
184 184
      * @throws \LogicException
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
     }
207 207
     /**
208 208
      * @param string $xml
209
-         * @param string $ownerID
209
+     * @param string $ownerID
210 210
      *
211 211
      * @return self Fluent interface.
212 212
      * @throws \LogicException
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
     }
231 231
     /**
232 232
      * @param string $xml
233
-         * @param string $ownerID
233
+     * @param string $ownerID
234 234
      *
235 235
      * @return self Fluent interface.
236 236
      * @throws \LogicException
Please login to merge, or discard this patch.