Guest User

Untitled

a guest
Jan 17th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. Fatal error: Uncaught Error: Cannot use object of type Stuff as array in...
  2.  
  3. try{
  4. class Stuff
  5. {
  6.  
  7. }
  8.  
  9. $stuff= new Stuff();
  10. $stuff["test"]=0; <<<<<<< this should trigger the below catch
  11. }
  12. catch (Exception $e) {
  13. $myLogger->Log($e);
  14. }
Add Comment
Please, Sign In to add comment