for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* PHP version 5.5
* @package Forecast
* @author Sergey V.Kuzin <[email protected]>
* @license MIT
*/
namespace Forecast;
use Forecast\Helper\Point;
class WunderGround extends WeatherAbstract
{
* @param Point $point
* @internal
* @return Current
protected function doFetchCurrent(Point $point)
// TODO: Implement doFetchCurrent() method.
}
* @return Hourly
protected function doFetchHourly(Point $point)
// TODO: Implement doFetchHourly() method.
* @return string
protected function getCacheKeyCurrent(Point $point)
// TODO: Implement getCacheKeyCurrent() method.
protected function getCacheKeyHourly(Point $point)
// TODO: Implement getCacheKeyHourly() method.
* @return \DateTime
protected function getCacheExpirationCurrent()
// TODO: Implement getCacheExpirationCurrent() method.
protected function getCacheExpirationHourly()
// TODO: Implement getCacheExpirationHourly() method.