I'm using this code to initialize a multi-dimensional array:
protected $availableAuthMechanisms = [
'open' => (object)[
'owner' => 'Mohsin.Auth',
'name' => 'Open',
'identifier' => 'open'
]
];
And I get an error that says "Constant expression contains invalid operations". What is going on here?--how do I achieve this properly?