Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php

/**
 * Subclass for representing a row from the 'author' table.
 *
 *
 *
 * @package lib.model
 */
class Author extends BaseAuthor
{
        /**
         * Initializes internal state of Author object.
         * @see        parent::__construct()
         */
        public function __construct()
        {
                // Make sure that parent constructor is always invoked, since that
                // is where any default values for this object are set.
                parent::__construct();
        }

        public function __toString()
  {
    return $this->getName();
  }

}