Thread: Need help!
View Single Post
  #1  
Old 04-15-2015, 04:30 AM
missie missie is offline
Member
 
Join Date: Apr 2015
Posts: 7
Gender: Unknown/Other
Credits: 1,396
missie is on a distinguished road
Exclamation Need help!

I used the forum tutorials and successfully installed the script! Or, at least, I think so ...

When I try to reach the site, I get this error message:

Parse error: syntax error, unexpected T_STRING in /home/a5842023/public_html/classes/resource/native/objective.php on line 3


This is the "objective.php"

PHP Code:
<?php

namespace Resource\Native;

/**
 * The Objective Interface, it is the interface that all Mysidia classes should implement minus a few special cases.
 * It defines a standard interface for Mysidia Objects, the root class Object also implements this interface.
 * This interface is very useful for classes that extend from PHP's built-in classes, as they cannot extend from root Object Class.
 * By Implementing Objective interface, objects of the specific class can be used in Collections Framework.
 * @category Resource
 * @package Native
 * @author Hall of Famer 
 * @copyright Mysidia Adoptables Script
 * @link http://www.mysidiaadoptables.com
 * @since 1.3.3
 * @todo Not much at this point.
 *
 */
 
interface Objective{

    
/**
     * The equals method, checks whether target object is equivalent to this one.
     * @param Objective  $object     
     * @access public
     * @return Boolean
     */
    
public function equals(Objective $object);
    
    
/**
     * The getClassName method, returns class name of an instance. 
     * The return value may differ depending on child classes. 
     * @access public
     * @return String
     */    
    
public function getClassName();
    
    
/**
     * Magic method to_String() for Object class, returns object information.
     * @access public
     * @return String
     */    
    
public function __toString(); 
}
?>

Please help!!!
Reply With Quote