Guest User

Untitled

a guest
Apr 23rd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. Error: Parse error: syntax error, unexpected '(', expecting ',' or ';'
  2. class Application_Model_User {
  3.     private $dbAdapter = Zend_Db_Table::getDefaultAdapter();
  4.  
  5.     public function foo() {
  6.     //code
  7.     }
  8. }
  9.  
  10.  
  11.  
  12. funktioniert:
  13. class Application_Model_User {
  14.     private $dbAdapter = "hi";
  15.  
  16.     public function foo() {
  17.     //code
  18.     }
  19. }
Add Comment
Please, Sign In to add comment