Hi
I am getting this fatal error while accessing it. can any one help me find whats wrong with code?
Thnaks,
sharma
<?php
require_once('propel/om/BaseObject.php');
/**
* Base class that represents a row from the 'accounts' table.
*
*
*
* @package debitcard.om
*/
abstract class BaseAccount extends BaseObject implements Persistent {
/**
* The Peer class.
* Instance provides a convenient way of calling static methods on a class
* that calling code may not be able to identify.
* @var AccountPeer
*/
protected static $peer;
/**
* The value for the account_id field.
* @var int
*/
protected $account_id;
/**
* The value for the foreign_user_id_1 field.
* @var string
*/
protected $foreign_user_id_1;
/**
* The value for the owner_account_id field.
* Note: this column has a database default value of: 0
* @var int
*/
protected $owner_account_id;