Function Resource_fs_base->_default_property_str_null
Definitions
sources/resource_fs_base_class.php
- Find a default string property, defaulting to null.
- Visibility: protected
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: string
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $properties | array | No | No | required parameter | N/A | N/A | The properties |
| $property | ID_TEXT | No | No | required parameter | N/A | N/A | The property |
Returns
- The value (null: null value)
- Type: ?string
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Find a default string property, defaulting to null.
*
* @param array $properties The properties
* @param ID_TEXT $property The property
* @return ?string The value (null: null value)
*/
protected function _default_property_str_null(array $properties, string $property) : ?string
* Find a default string property, defaulting to null.
*
* @param array $properties The properties
* @param ID_TEXT $property The property
* @return ?string The value (null: null value)
*/
protected function _default_property_str_null(array $properties, string $property) : ?string

