mcred/FeedMeNow-PHP

View on GitHub
src/FeedMeNow/Model/Search.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace FeedMeNow\Model;

class Search
{
    private $name;

    public function __construct($name)
    {
        $this->name = $name;
    }

    public function getName()
    {
        return $this->name;
    }
}