Skip to content

Commit 8cf6da5

Browse files
committed
Some more CS fixes.
1 parent f3c0202 commit 8cf6da5

28 files changed

+91
-41
lines changed

Cmfcmf/OpenWeatherMap.php

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
* Please see the LICENSE file distributed with this source code for further
88
* information regarding copyright and licensing.
99
*
10-
* Please visit the following links to read about the usage policies and the license of OpenWeatherMap before using this class.
10+
* Please visit the following links to read about the usage policies and the license of
11+
* OpenWeatherMap before using this class:
12+
*
1113
* @see http://www.OpenWeatherMap.org
1214
* @see http://www.OpenWeatherMap.org/about
1315
* @see http://www.OpenWeatherMap.org/copyright
@@ -521,11 +523,6 @@ public function getRawWeatherHistory($query, \DateTime $start, $endOrCount = 1,
521523
/**
522524
* Fetches the result or delivers a cached version of the result.
523525
*
524-
* @param $type
525-
* @param $query
526-
* @param $units
527-
* @param $lang
528-
* @param $mode
529526
* @param $url
530527
*
531528
* @return string

Cmfcmf/OpenWeatherMap/AbstractCache.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
* Please see the LICENSE file distributed with this source code for further
88
* information regarding copyright and licensing.
99
*
10-
* Please visit the following links to read about the usage policies and the license of OpenWeatherMap before using this class.
10+
* Please visit the following links to read about the usage policies and the license of
11+
* OpenWeatherMap before using this class:
12+
*
1113
* @see http://www.OpenWeatherMap.org
1214
* @see http://www.OpenWeatherMap.org/about
1315
* @see http://www.OpenWeatherMap.org/copyright

Cmfcmf/OpenWeatherMap/CurrentWeather.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
* Please see the LICENSE file distributed with this source code for further
88
* information regarding copyright and licensing.
99
*
10-
* Please visit the following links to read about the usage policies and the license of OpenWeatherMap before using this class.
10+
* Please visit the following links to read about the usage policies and the license of
11+
* OpenWeatherMap before using this class:
12+
*
1113
* @see http://www.OpenWeatherMap.org
1214
* @see http://www.OpenWeatherMap.org/about
1315
* @see http://www.OpenWeatherMap.org/copyright

Cmfcmf/OpenWeatherMap/Exception.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
* Please see the LICENSE file distributed with this source code for further
88
* information regarding copyright and licensing.
99
*
10-
* Please visit the following links to read about the usage policies and the license of OpenWeatherMap before using this class.
10+
* Please visit the following links to read about the usage policies and the license of
11+
* OpenWeatherMap before using this class:
12+
*
1113
* @see http://www.OpenWeatherMap.org
1214
* @see http://www.OpenWeatherMap.org/about
1315
* @see http://www.OpenWeatherMap.org/copyright

Cmfcmf/OpenWeatherMap/Fetcher/CurlFetcher.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
* Please see the LICENSE file distributed with this source code for further
88
* information regarding copyright and licensing.
99
*
10-
* Please visit the following links to read about the usage policies and the license of OpenWeatherMap before using this class.
10+
* Please visit the following links to read about the usage policies and the license of
11+
* OpenWeatherMap before using this class:
12+
*
1113
* @see http://www.OpenWeatherMap.org
1214
* @see http://www.OpenWeatherMap.org/about
1315
* @see http://www.OpenWeatherMap.org/copyright
@@ -38,4 +40,4 @@ public function fetch($url)
3840

3941
return $content;
4042
}
41-
}
43+
}

Cmfcmf/OpenWeatherMap/Fetcher/CurlFetcherTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
* Please see the LICENSE file distributed with this source code for further
88
* information regarding copyright and licensing.
99
*
10-
* Please visit the following links to read about the usage policies and the license of OpenWeatherMap before using this class.
10+
* Please visit the following links to read about the usage policies and the license of
11+
* OpenWeatherMap before using this class:
12+
*
1113
* @see http://www.OpenWeatherMap.org
1214
* @see http://www.OpenWeatherMap.org/about
1315
* @see http://www.OpenWeatherMap.org/copyright
@@ -47,4 +49,4 @@ public function testValidUrl()
4749

4850
$this->assertContains('Herman Melville', $content);
4951
}
50-
}
52+
}

Cmfcmf/OpenWeatherMap/Fetcher/FetcherInterface.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
* Please see the LICENSE file distributed with this source code for further
88
* information regarding copyright and licensing.
99
*
10-
* Please visit the following links to read about the usage policies and the license of OpenWeatherMap before using this class.
10+
* Please visit the following links to read about the usage policies and the license of
11+
* OpenWeatherMap before using this class:
12+
*
1113
* @see http://www.OpenWeatherMap.org
1214
* @see http://www.OpenWeatherMap.org/about
1315
* @see http://www.OpenWeatherMap.org/copyright
@@ -33,4 +35,4 @@ interface FetcherInterface
3335
* @api
3436
*/
3537
public function fetch($url);
36-
}
38+
}

Cmfcmf/OpenWeatherMap/Fetcher/FileGetContentsFetcher.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
* Please see the LICENSE file distributed with this source code for further
88
* information regarding copyright and licensing.
99
*
10-
* Please visit the following links to read about the usage policies and the license of OpenWeatherMap before using this class.
10+
* Please visit the following links to read about the usage policies and the license of
11+
* OpenWeatherMap before using this class:
12+
*
1113
* @see http://www.OpenWeatherMap.org
1214
* @see http://www.OpenWeatherMap.org/about
1315
* @see http://www.OpenWeatherMap.org/copyright
@@ -30,4 +32,4 @@ public function fetch($url)
3032
{
3133
return file_get_contents($url);
3234
}
33-
}
35+
}

Cmfcmf/OpenWeatherMap/Fetcher/FileGetContentsFetcherTest.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
* Please see the LICENSE file distributed with this source code for further
88
* information regarding copyright and licensing.
99
*
10-
* Please visit the following links to read about the usage policies and the license of OpenWeatherMap before using this class.
10+
* Please visit the following links to read about the usage policies and the license of
11+
* OpenWeatherMap before using this class:
12+
*
1113
* @see http://www.OpenWeatherMap.org
1214
* @see http://www.OpenWeatherMap.org/about
1315
* @see http://www.OpenWeatherMap.org/copyright
@@ -53,4 +55,4 @@ public function testValidUrl()
5355

5456
$this->assertContains('Herman Melville', $content);
5557
}
56-
}
58+
}

Cmfcmf/OpenWeatherMap/Forecast.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
* Please see the LICENSE file distributed with this source code for further
88
* information regarding copyright and licensing.
99
*
10-
* Please visit the following links to read about the usage policies and the license of OpenWeatherMap before using this class.
10+
* Please visit the following links to read about the usage policies and the license of
11+
* OpenWeatherMap before using this class:
12+
*
1113
* @see http://www.OpenWeatherMap.org
1214
* @see http://www.OpenWeatherMap.org/about
1315
* @see http://www.OpenWeatherMap.org/copyright

0 commit comments

Comments
 (0)