Skip to content

Commit

Permalink
Added ApiPathConfig
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Janssen committed Dec 31, 2016
1 parent 0514da5 commit 7813054
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions src/Model/ApiPathConfig.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?php

namespace MattJanssen\ApiResponseBundle\Model;

/**
* @author Matt Janssen <matt@mattjanssen.com>
*/
class ApiPathConfig extends ApiConfig
{
/**
* @var string
*/
private $pattern;

/**
* @return string
*/
public function getPattern()
{
return $this->pattern;
}

/**
* @param string $pattern
*
* @return $this
*/
public function setPattern($pattern)
{
$this->pattern = $pattern;

return $this;
}
}

0 comments on commit 7813054

Please sign in to comment.