AthensFramework/encryption

View on GitHub
test/mock/MockColumn.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Created by PhpStorm.
 * User: jschilz
 * Date: 1/29/2016
 * Time: 2:55 PM
 */

namespace Athens\Encryption\Test\Mock;

class MockColumn
{
    protected $phpName;
    protected $type;

    public function __construct($phpName, $type)
    {
        $this->phpName = $phpName;
        $this->type = $type;
    }

    public function getPhpName()
    {
        return $this->phpName;
    }

    public function getType()
    {
        return $this->type;
    }

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