예제 #1
0
파일: M2X.php 프로젝트: attm2x/m2x-php
 /**
  * Retrieve Command Details.
  *
  * @link https://m2x.att.com/developer/documentation/v2/commands#View-Command-Details
  *
  * @param string $id
  * @return Command
  */
 public function viewCommandDetails($id)
 {
     return Command::get($this, $id);
 }
예제 #2
0
파일: Device.php 프로젝트: attm2x/m2x-php
 /**
  * Device view of command details.
  *
  * @link https://m2x.att.com/developer/documentation/v2/commands#Device-s-View-of-Command-Details
  *
  * @param string $id
  * @return Command
  */
 public function command($id)
 {
     return Command::get($this->client, $id);
 }