CakePHP,表$ belongsTo两个表:错误错误:无法重新声明table :: $ belongsTo

I have problem like that - have 3 tables, for example Clients, Hats, Tshirts. Each Client have one Hat and one Tshirt relation. I made this like that:

 `
  ClientsModel:
  var $name = 'Client';
  var $belongsTo = 'Hat';
  var $belongsTo = 'Tshirt';

  HatModel:
  var $name = 'Hat';
  var $hasMany = 'Client';

  TshirtModel:
  var $name = 'Tshirt';
  var $hasMany = 'Client';
  `

I cant display indext.ctp of Clients View, the error is: ` Fatal Error

   Error: Cannot redeclare Cleint::$belongsTo
   File: /var/www/uat/app/Model/Client.php 
   `

How to deal with that relation in my database?

To declare a belongsTo relation you need to create an array of object not a single var for each belongsTo relation.
In your you client Model the belongsTo relation needs to be like this:

public $belongsTo = array(
    'Hat' => array(
        'className'     => 'Hat',
        'conditions'    => '',
        'order'         => '',
        'foreignKey'    => 'hat_id' //or your external key
    ),
    'Tshirt' => array(
        'className'     => 'Tshirt',
        'conditions'    => '',
        'order'         => '',
        'foreignKey'    => 'tshirt_id' //or your external key
    )
);

MANUAL