Skip to content

Instantly share code, notes, and snippets.

@MarioBlazek
Created April 9, 2020 20:01
Show Gist options
  • Save MarioBlazek/7248afcc9c901ac93cdc009a591fe194 to your computer and use it in GitHub Desktop.
Save MarioBlazek/7248afcc9c901ac93cdc009a591fe194 to your computer and use it in GitHub Desktop.
<?php
namespace AppBundle\Integration\TheCatApi\Value;
class TheCatApiValue
{
/**
* @var string
*/
private $id;
/**
* @var string
*/
private $name;
public function __construct($id, $name)
{
$this->id = $id;
$this->name = $name;
}
/**
* @return mixed
*/
public function getId()
{
return $this->id;
}
/**
* @return mixed
*/
public function getName()
{
return $this->name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment