Skip to content

Commit

Permalink
Fixes #8, fixes #10, fixes #12, fixes #13, fixes #14, fixes #15, fixes
Browse files Browse the repository at this point in the history
…#16, fixes #17.

Adds newline at end of file.
  • Loading branch information
dweichert committed Jan 24, 2016
1 parent c3f8ca5 commit 7c8ecfe
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ php:
- "5.5"
- "5.4"
- "5.3"
- "hhvm"
- "hhvm"
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
<directory>./src/EmperorNortonCommands/tests/</directory>
</testsuite>
</testsuites>
</phpunit>
</phpunit>
2 changes: 1 addition & 1 deletion src/EmperorNortonCommands/lib/DdateConverter.php
Original file line number Diff line number Diff line change
Expand Up @@ -249,4 +249,4 @@ protected function _getTimestamp(\DateTime $date)
{
return gmmktime(0, 0, 0, $date->format('m'), $date->format('d'), $date->format('Y'));
}
}
}
2 changes: 1 addition & 1 deletion src/EmperorNortonCommands/lib/DdateFormatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ public function setFormat($format = null)
* @return string
*/
abstract public function format(DdateValue $ddate);
}
}
2 changes: 1 addition & 1 deletion src/EmperorNortonCommands/lib/DdateValue.php
Original file line number Diff line number Diff line change
Expand Up @@ -188,4 +188,4 @@ public function setHolyday($holyday)
$this->_holyday = $holyday;
return $this;
}
}
}
2 changes: 1 addition & 1 deletion src/EmperorNortonCommands/lib/EnglishStandardFormatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -270,4 +270,4 @@ protected function _getHolyday(DdateValue $ddate)
{
return $ddate->getHolyday();
}
}
}
2 changes: 1 addition & 1 deletion src/EmperorNortonCommands/lib/FormatterFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ public function getFormatter($locale)
$class = (string)$namespace . $this->_availableFormatters[$locale]['class'];
return new $class();
}
}
}
2 changes: 1 addition & 1 deletion src/EmperorNortonCommands/lib/GermanStandardFormatter.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,4 +230,4 @@ protected function _getHolyday(DdateValue $ddate)
return $this->_holydayTranslations[$ddate->getHolyday()];
}

}
}

0 comments on commit 7c8ecfe

Please sign in to comment.