Inpsyde\MultilingualPress\Core\ImmutablePluginProperties::offsetExists PHP Метод

offsetExists() публичный Метод

Checks if a property with the given name exists.
С версии: 3.0.0
public offsetExists ( string $name ) : boolean
$name string The name of a property.
Результат boolean Whether or not a property with the given name exists.
    public function offsetExists($name)
    {
        return array_key_exists($name, $this->properties);
    }