Advertisement
Guest User

Untitled

a guest
Jun 29th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1. final $array = [];
  2. $array[] = 'allowed';
  3. $array[1] = 'allowed';
  4. $array = []; // not allowed
  5.  
  6. final $resource = new stdClass;
  7. $resource->allowed = true;
  8. $resource = new stdClass; // not allowed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement