Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
msvrtan committed Jul 29, 2017
1 parent c44293e commit 9a72778
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/NullDev/Skeleton/Uuid/Command/CreateUuidPhpUnitTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,32 @@

namespace NullDev\Skeleton\Uuid\Command;

use NullDev\Skeleton\Definition\PHP\Types\ClassType;

/**
* @see CreateUuidPhpUnitTestSpec
* @see CreateUuidPhpUnitTestTest
*/
class CreateUuidPhpUnitTest
{
/** @var string */
private $fileName;
/** @var ClassType */
private $classType;

public function __construct(string $fileName, ClassType $classType)
{
$this->fileName = $fileName;
$this->classType = $classType;
}

public function getFileName(): string
{
return $this->fileName;
}

public function getClassType(): ClassType
{
return $this->classType;
}
}
22 changes: 22 additions & 0 deletions src/NullDev/Skeleton/Uuid/Command/CreateUuidSpecification.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,32 @@

namespace NullDev\Skeleton\Uuid\Command;

use NullDev\Skeleton\Definition\PHP\Types\ClassType;

/**
* @see CreateUuidSpecificationSpec
* @see CreateUuidSpecificationTest
*/
class CreateUuidSpecification
{
/** @var string */
private $fileName;
/** @var ClassType */
private $classType;

public function __construct(string $fileName, ClassType $classType)
{
$this->fileName = $fileName;
$this->classType = $classType;
}

public function getFileName(): string
{
return $this->fileName;
}

public function getClassType(): ClassType
{
return $this->classType;
}
}

0 comments on commit 9a72778

Please sign in to comment.