Skip to content

Instantly share code, notes, and snippets.

@844196
Created March 23, 2017 15:39
Show Gist options
  • Save 844196/46387936323404cd618b776e2c6b8089 to your computer and use it in GitHub Desktop.
Save 844196/46387936323404cd618b776e2c6b8089 to your computer and use it in GitHub Desktop.
<?php
require $argv[1];
$propertyNames = array_map(
function ($property) { return $property->getName(); },
(new \ReflectionClass(Operation::class))->getProperties()
);
echo json_encode($propertyNames) . PHP_EOL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment