Some code style fixes

This commit is contained in:
Timothy Warren 2015-11-04 16:53:22 -05:00
parent beb127c06c
commit 6ef8caca00
3 changed files with 5 additions and 4 deletions

View File

@ -17,7 +17,7 @@ class Config {
/**
* Config object
*
* @var Aviat\Ion\Type\ArrayType
* @var \Aviat\Ion\Type\ArrayType
*/
protected $map = [];
@ -84,7 +84,7 @@ class Config {
{
$this->map->set($key, $value);
}
else throw
else throw
new InvalidArgumentException("Key must be integer, string, or array, and cannot be empty");
return $this;

View File

@ -198,7 +198,7 @@ class Controller {
*
* @param string $template
* @param array $data
* @param HtmlView $view
* @param HtmlView|null $view
* @return void
*/
protected function outputHTML($template, array $data = [], $view = NULL)

View File

@ -74,9 +74,10 @@ class UrlGenerator extends RoutingBase {
// Remove any optional parameters from the route
// and replace them with existing route parameters, if they exist
$path_segments = explode('/', $path);
$segment_count = count($path_segments);
$segments = $this->segments();
for ($i = 0; $i < count($path_segments); $i++)
for ($i = 0; $i < $segment_count; $i++)
{
if ( ! array_key_exists($i + 1, $segments))
{