24 lines
369 B
PHP
24 lines
369 B
PHP
<?php
|
|
|
|
namespace SMW\Tests\Utils\Fixtures\Properties;
|
|
|
|
use SMW\DIProperty;
|
|
|
|
/**
|
|
* @license GPL-2.0-or-later
|
|
* @since 2.1
|
|
*
|
|
* @author mwjames
|
|
*/
|
|
class TitleProperty extends FixtureProperty {
|
|
|
|
/**
|
|
* @since 2.1
|
|
*/
|
|
public function __construct() {
|
|
$this->property = DIProperty::newFromUserLabel( 'Title' );
|
|
$this->property->setPropertyTypeId( '_wpg' );
|
|
}
|
|
|
|
}
|