Skip to content

Commit

Permalink
fix styleci
Browse files Browse the repository at this point in the history
  • Loading branch information
kylemilloy committed Jan 26, 2020
1 parent 3398d56 commit 882b7ff
Showing 1 changed file with 6 additions and 20 deletions.
26 changes: 6 additions & 20 deletions src/NowCal/NowCal.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@

class NowCal
{
use Traits\HasCasters,
Traits\HasHelpers,
Traits\HasMutators,
Traits\HasDateTimes,
Traits\HasAttributes,
Traits\HasStaticAccessors;
use Traits\HasCasters;
use Traits\HasHelpers;
use Traits\HasMutators;
use Traits\HasDateTimes;
use Traits\HasAttributes;
use Traits\HasStaticAccessors;

/**
* iCalendar Product Identifier.
Expand Down Expand Up @@ -41,8 +41,6 @@ class NowCal

/**
* Instantiate the NowCal class.
*
* @param array $params
*/
public function __construct(array $params = [])
{
Expand Down Expand Up @@ -104,11 +102,7 @@ protected function createEvent()
* included in the spec then fail. If not provided but
* required then throw exception.
*
* @param string $key
*
* @throws Exception
*
* @return string
*/
protected function getParameter(string $key): string
{
Expand All @@ -122,10 +116,6 @@ protected function getParameter(string $key): string

/**
* Returns the iCalendar param key.
*
* @param string $name
*
* @return string
*/
protected function getParameterKey(string $name): string
{
Expand All @@ -143,10 +133,6 @@ protected function getParameterKey(string $name): string

/**
* Return the associated value for the supplied iCal param.
*
* @param string $key
*
* @return string
*/
protected function getParameterValue(string $key): string
{
Expand Down

0 comments on commit 882b7ff

Please sign in to comment.