Sindbad~EG File Manager
<?php
declare (strict_types=1);
namespace Rector\Renaming\ValueObject;
/**
* @api
*/
final class RenameAttribute
{
/**
* @readonly
* @var string
*/
private $oldAttribute;
/**
* @readonly
* @var string
*/
private $newAttribute;
public function __construct(string $oldAttribute, string $newAttribute)
{
$this->oldAttribute = $oldAttribute;
$this->newAttribute = $newAttribute;
}
public function getOldAttribute() : string
{
return $this->oldAttribute;
}
public function getNewAttribute() : string
{
return $this->newAttribute;
}
}
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists