Account.php
<?php
namespace TEST
{
class FRM_Account extends BL_Account
{
public function PageLoad()
{
$Account->BL_Account();
$Account->SelectAllAccounts();
}
}
}
?>
BL_Account.php
<?php
namespace TEST
{
class BL_Account
{
public function SelectUniqueAccount()
{
}
public function UpdateAccount()
{
}
public function DeleteAccount()
{
}
}
}
?>
Weet iemand waarom in Eclipse in het bestand Account.php de functies niet zichtbaar worden wanneer ik de volgende code uitvoer?
$Account->BL_Account();
$Account->SelectAllAccounts();
SelectAllAccounts(); krijg ik hier dus niet te zien? Weet iemand waarom?