Yaffs site version 1.1
[yaffs-website] / vendor / php-instagram-api / php-instagram-api / Instagram / Comment.php
diff --git a/vendor/php-instagram-api/php-instagram-api/Instagram/Comment.php b/vendor/php-instagram-api/php-instagram-api/Instagram/Comment.php
deleted file mode 100644 (file)
index 9a658d7..0000000
+++ /dev/null
@@ -1,82 +0,0 @@
-<?php
-
-/**
-* Instagram PHP
-* @author Galen Grover <galenjr@gmail.com>
-* @license http://opensource.org/licenses/mit-license.php The MIT License
-*/
-
-namespace Instagram;
-
-use \Instagram\User;
-
-/**
- * Comment class
- *
- * @see \Instagram\CurrentUser::addMediaComment()
- * @see \Instagram\CurrentUser::deleteMediaComment()
- * @see \Instagram\Media::getCaption()
- * @see \Instagram\Media::getComments()
- */
-class Comment extends \Instagram\Core\BaseObjectAbstract {
-
-    /**
-     * Cached user
-     * 
-     * @var \Instagram\User
-     */
-    protected $user = null;
-
-    /**
-     * Get comment creation time
-     *
-     * @param $format Time format {@link http://php.net/manual/en/function.date.php}
-     * @return string Returns the creation time with optional formatting
-     * @access public
-     */
-    public function getCreatedTime( $format = null ) {
-        if ( $format ) {
-            $date = date( $format, $this->data->created_time );
-        }
-        else {
-            $date = $this->data->created_time;
-        }
-        return $date;
-    }
-
-    /**
-     * Get the comment text
-     *
-     * @access public
-     * @return string
-     */
-    public function getText() {
-        return $this->data->text;
-    }
-
-    /**
-     * Get the comment's user
-     *
-     * @access public
-     * @return \Instagram\User
-     */
-    public function getUser() {
-        if ( !$this->user ) {
-            $this->user = new User( $this->data->from, $this->proxy );
-        }
-        return $this->user;
-    }
-
-    /**
-     * Magic toString method
-     *
-     * Return the comment text
-     *
-     * @access public
-     * @return string
-     */
-    public function __toString() {
-        return $this->getText();
-    }
-
-}
\ No newline at end of file