for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PhpWinTools\WmiScripting\Support\ApiObjects;
use PhpWinTools\Support\COM\VariantWrapper;
use PhpWinTools\WmiScripting\Support\ApiObjects\VariantInterfaces\QualifierVariant;
class SWbemQualifier extends AbstractWbemObject
{
protected $name;
protected $value;
/** @var VariantWrapper|QualifierVariant */
protected $object;
public function __construct(VariantWrapper $variant)
parent::__construct($variant);
$this->name = (string) $this->object->Name;
Name
PhpWinTools\Support\COM\VariantWrapper
__get
$this->value = $this->object->Value;
Value
}