Guest User

Untitled

a guest
Jan 16th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <type name="ExampleFooModelFoo">
  2. <arguments>
  3. <argument name="stuff" xsi:type="array">
  4. <item name="hello" xsi:type="string" translate="true">Hello World!</item>
  5. </argument>
  6. </arguments>
  7. </type>
  8.  
  9. namespace ExampleFooModel;
  10.  
  11. class Foo {
  12. public function __construct(array $stuff = [])
  13. {
  14. var_dump($stuff);
  15. }
  16. }
Add Comment
Please, Sign In to add comment