1.0.0 Alpha Release #59
1 changed files with 23 additions and 0 deletions
23
src/ncc/Objects/ProjectDetectionResults.php
Normal file
23
src/ncc/Objects/ProjectDetectionResults.php
Normal file
|
@ -0,0 +1,23 @@
|
|||
<?php /** @noinspection PhpMissingFieldTypeInspection */
|
||||
|
||||
namespace ncc\Objects;
|
||||
|
||||
use ncc\Abstracts\ProjectType;
|
||||
|
||||
class ProjectDetectionResults
|
||||
{
|
||||
/**
|
||||
* The directory path that contains the project root (the directory that contains the project.json, etc.. file)
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $ProjectPath;
|
||||
|
||||
/**
|
||||
* The type of project that was detected
|
||||
*
|
||||
* @see ProjectType
|
||||
* @var string
|
||||
*/
|
||||
public $ProjectType;
|
||||
}
|
Loading…
Add table
Reference in a new issue