Skip to content

Instantly share code, notes, and snippets.

@brzuchal
Last active August 26, 2019 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brzuchal/94836a80a758053818353bfd9eeb8e29 to your computer and use it in GitHub Desktop.
Save brzuchal/94836a80a758053818353bfd9eeb8e29 to your computer and use it in GitHub Desktop.
Data type PHP
<?php
data Foo {
var string $foo; // if not set then uninitialized
var bool $bar = false;
}
$foo = new Foo
{
foo: "baz",
bar: true
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment