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: 
<?php
namespace Apptus\ESales\Connector;

/**
 * Represents a result having the count format.
 */
class Count implements Result {
    private $count;

    /**
     * @internal
     * @param integer
     */
    public function __construct($count) {
        $this->count = $count;
    }

    /**
     * Get the count.
     *
     * @return integer
     *            The count.
     */
    public function getCount() {
        return $this->count;
    }

    public function getType() {
        return ResultType::COUNT;
    }

    public function __toString() {
        return (string) $this->count;
    }
}
Apptus ESales Connector PHP API documentation generated by ApiGen