PHP Class Neos\ContentRepository\Migration\Filters\PropertyNotEmpty

Inheritance: implements Neos\ContentRepository\Migration\Filters\FilterInterface
Datei anzeigen Open project: neos/neos-development-collection

Protected Properties

Property Type Description
$propertyName string The name of the property to be checked for non-empty value.

Public Methods

Method Description
matches ( NodeData $node ) : boolean Returns TRUE if the given node has the property and the value is not empty.
setPropertyName ( string $propertyName ) : void Sets the property name to be checked for non-empty value.

Method Details

matches() public method

Returns TRUE if the given node has the property and the value is not empty.
public matches ( NodeData $node ) : boolean
$node Neos\ContentRepository\Domain\Model\NodeData
return boolean

setPropertyName() public method

Sets the property name to be checked for non-empty value.
public setPropertyName ( string $propertyName ) : void
$propertyName string
return void

Property Details

$propertyName protected_oe property

The name of the property to be checked for non-empty value.
protected string $propertyName
return string