@@ -1,36 +1,36 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Contains ContactNotifications 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 ContactNotifications 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; |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | } |
99 | 99 | /** |
100 | 100 | * @param string $xml |
101 | - * @param string $ownerID |
|
101 | + * @param string $ownerID |
|
102 | 102 | * |
103 | 103 | * @return self Fluent interface. |
104 | 104 | * @throws \LogicException |
@@ -120,7 +120,7 @@ |
||
120 | 120 | 'senderName' => '', |
121 | 121 | 'sentDate' => '1970-01-01 00:00:01' |
122 | 122 | ]; |
123 | - $this->attributePreserveData($xml, $columnDefaults, $tableName,'//contactNotifications/row'); |
|
123 | + $this->attributePreserveData($xml, $columnDefaults, $tableName, '//contactNotifications/row'); |
|
124 | 124 | return $this; |
125 | 125 | } |
126 | 126 | } |
@@ -1,36 +1,36 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Contains MailingLists 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 MailingLists 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; |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | } |
99 | 99 | /** |
100 | 100 | * @param string $xml |
101 | - * @param string $ownerID |
|
101 | + * @param string $ownerID |
|
102 | 102 | * |
103 | 103 | * @return self Fluent interface. |
104 | 104 | * @throws \LogicException |
@@ -117,7 +117,7 @@ |
||
117 | 117 | 'listID' => null, |
118 | 118 | 'ownerID' => $ownerID |
119 | 119 | ]; |
120 | - $this->attributePreserveData($xml, $columnDefaults, $tableName,'//mailingLists/row'); |
|
120 | + $this->attributePreserveData($xml, $columnDefaults, $tableName, '//mailingLists/row'); |
|
121 | 121 | return $this; |
122 | 122 | } |
123 | 123 | } |
@@ -1,36 +1,36 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Contains Medals 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 Medals 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; |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | } |
100 | 100 | /** |
101 | 101 | * @param string $xml |
102 | - * @param string $ownerID |
|
102 | + * @param string $ownerID |
|
103 | 103 | * |
104 | 104 | * @return self Fluent interface. |
105 | 105 | * @throws \LogicException |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | } |
127 | 127 | /** |
128 | 128 | * @param string $xml |
129 | - * @param string $ownerID |
|
129 | + * @param string $ownerID |
|
130 | 130 | * |
131 | 131 | * @return self Fluent interface. |
132 | 132 | * @throws \LogicException |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | 'reason' => null, |
122 | 122 | 'status' => null |
123 | 123 | ]; |
124 | - $this->attributePreserveData($xml, $columnDefaults, $tableName,'//currentCorporation/row'); |
|
124 | + $this->attributePreserveData($xml, $columnDefaults, $tableName, '//currentCorporation/row'); |
|
125 | 125 | return $this; |
126 | 126 | } |
127 | 127 | /** |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | 'status' => null, |
152 | 152 | 'title' => null |
153 | 153 | ]; |
154 | - $this->attributePreserveData($xml, $columnDefaults, $tableName,'//otherCorporations/row'); |
|
154 | + $this->attributePreserveData($xml, $columnDefaults, $tableName, '//otherCorporations/row'); |
|
155 | 155 | return $this; |
156 | 156 | } |
157 | 157 | } |
@@ -1,36 +1,36 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Contains Notifications 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 Notifications 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; |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | } |
99 | 99 | /** |
100 | 100 | * @param string $xml |
101 | - * @param string $ownerID |
|
101 | + * @param string $ownerID |
|
102 | 102 | * |
103 | 103 | * @return self Fluent interface. |
104 | 104 | * @throws \LogicException |
@@ -121,7 +121,7 @@ |
||
121 | 121 | 'sentDate' => '1970-01-01 00:00:01', |
122 | 122 | 'typeID' => null |
123 | 123 | ]; |
124 | - $this->attributePreserveData($xml, $columnDefaults, $tableName,'//notifications/row'); |
|
124 | + $this->attributePreserveData($xml, $columnDefaults, $tableName, '//notifications/row'); |
|
125 | 125 | return $this; |
126 | 126 | } |
127 | 127 | } |
@@ -1,36 +1,36 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Contains Research 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 Research 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; |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | } |
99 | 99 | /** |
100 | 100 | * @param string $xml |
101 | - * @param string $ownerID |
|
101 | + * @param string $ownerID |
|
102 | 102 | * |
103 | 103 | * @return self Fluent interface. |
104 | 104 | * @throws \LogicException |
@@ -120,7 +120,7 @@ |
||
120 | 120 | 'researchStartDate' => '1970-01-01 00:00:01', |
121 | 121 | 'skillTypeID' => null |
122 | 122 | ]; |
123 | - $this->attributePreserveData($xml, $columnDefaults, $tableName,'//research/row'); |
|
123 | + $this->attributePreserveData($xml, $columnDefaults, $tableName, '//research/row'); |
|
124 | 124 | return $this; |
125 | 125 | } |
126 | 126 | } |
@@ -1,36 +1,36 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Contains SkillInTraining 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 SkillInTraining 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; |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | } |
99 | 99 | /** |
100 | 100 | * @param string $xml |
101 | - * @param string $ownerID |
|
101 | + * @param string $ownerID |
|
102 | 102 | * |
103 | 103 | * @return self Fluent interface. |
104 | 104 | * @throws \LogicException |
@@ -1,36 +1,36 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Contains SkillQueue 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 SkillQueue 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; |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | } |
99 | 99 | /** |
100 | 100 | * @param string $xml |
101 | - * @param string $ownerID |
|
101 | + * @param string $ownerID |
|
102 | 102 | * |
103 | 103 | * @return self Fluent interface. |
104 | 104 | * @throws \LogicException |
@@ -122,7 +122,7 @@ |
||
122 | 122 | 'startTime' => '1970-01-01 00:00:01', |
123 | 123 | 'typeID' => null |
124 | 124 | ]; |
125 | - $this->attributePreserveData($xml, $columnDefaults, $tableName,'//skillqueue/row'); |
|
125 | + $this->attributePreserveData($xml, $columnDefaults, $tableName, '//skillqueue/row'); |
|
126 | 126 | return $this; |
127 | 127 | } |
128 | 128 | } |
@@ -1,36 +1,36 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Contains UpcomingCalendarEvents 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 UpcomingCalendarEvents 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; |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | } |
99 | 99 | /** |
100 | 100 | * @param string $xml |
101 | - * @param string $ownerID |
|
101 | + * @param string $ownerID |
|
102 | 102 | * |
103 | 103 | * @return self Fluent interface. |
104 | 104 | * @throws \LogicException |
@@ -124,7 +124,7 @@ |
||
124 | 124 | 'ownerTypeID' => null, |
125 | 125 | 'response' => null |
126 | 126 | ]; |
127 | - $this->attributePreserveData($xml, $columnDefaults, $tableName,'//upcomingEvents/row'); |
|
127 | + $this->attributePreserveData($xml, $columnDefaults, $tableName, '//upcomingEvents/row'); |
|
128 | 128 | return $this; |
129 | 129 | } |
130 | 130 | } |
@@ -1,36 +1,36 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Contains CommonEveApiTrait 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) 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 CommonEveApiTrait 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) 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; |
35 | 35 | |
36 | 36 | use Monolog\Logger; |