Overview

Namespaces

  • Apptus
    • ESales
      • Connector
        • Report
        • Time
    • Util
      • Cache
  • PHP
  • Overview
  • Namespace
  • Class
  • Tree
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 
<?php
namespace Apptus\ESales\Connector\Report;

/**
 * Class containing name and value for an ad attribute.
 */
class Attribute {

    private $name;
    private $value;

    /**
     * @internal
     * @param string
     * @param string
     * @throws \InvalidArgumentException
     */
    function __construct($name, $value) {
        if ($name === null || trim($name) === '') {
            throw new \InvalidArgumentException('Argument name can not be null or empty.');
        }

        if ($value === null) {
            throw new \InvalidArgumentException('Argument value can not be null.');
        }

        $this->name = $name;
        $this->value = $value;
    }

    /**
     * @return string
     *            The name of the attribute.
     */
    public function name() {
        return $this->name;
    }

    /**
     * @return string
     *            The value of the attribute.
     */
    public function value() {
        return $this->value;
    }

    public function __toString() {
        return $this->name . ':' . $this->value;
    }
}
Apptus ESales Connector PHP API documentation generated by ApiGen