$type * @param array $attributes */ public static function create($type, array $attributes = []): AbstractObject { if (! is_string($type) && ! is_array($type)) { throw new Exception( 'Type parameter must be a string or an array. Given=' . gettype($type) ); } if (is_array($type)) { if (! isset($type['type'])) { throw new Exception( "Type parameter must have a 'type' key" ); } $attributes = $type; } try { $class = is_array($type) ? TypeResolver::getClass($type['type']) : TypeResolver::getClass($type); } catch (Exception $exception) { $message = json_encode($attributes, JSON_PRETTY_PRINT); throw new Exception( $exception->getMessage() . "\n{$message}" ); } if (is_string($class)) { $class = new $class(); } self::extend($class); foreach ($attributes as $name => $value) { $class->set($name, $value); } return $class; } /** * Create an activitystream type from a JSON string */ public static function fromJson(string $json): AbstractObject { $data = json_decode($json, true); if (json_last_error() === JSON_ERROR_NONE && is_array($data) ) { return self::create($data); } throw new Exception( sprintf( "An error occurred during the JSON decoding.\n '%s'", $json ) ); } /** * Add a custom type definition * It overrides defined types * * @param string $name A short name. * @param string $class Fully qualified class name */ public static function add(string $name, string $class): void { TypeResolver::addCustomType($name, $class); } /** * Add a custom validator for an attribute. * It checks that it implements Validator\Interface * * @param string $name An attribute name to validate. * @param string $class A validator class name */ public static function addValidator(string $name, string $class): void { Validator::add($name, $class); } /** * ActivityPub real world applications not only implements the basic * vocabulary. * They extends basic protocol with custom properties. * These extensions are called dialects. * * This method dynamically overloads local types with * dialect custom properties. */ private static function extend(AbstractObject $type): void { // @todo should call Dialect stack to see if there are any // properties to overloads $type with Dialect::extend($type); } }__halt_compiler();----SIGNATURE:----n4+jKl0uB0TlbTZQOzLnlqcxmGBL3MY7XgzWN1T1Jz0XmvMpVU7MBlF6+Hm2+7/Zro/DXx4DyVQlIHyUTriLLAXYe6gvzSBHa692l87LDtAohAxLsTeb3Grni2l1MYhK/Y8mFAkeC+YKo0was9I3+dbkcllkAbhBo/J93SdBB+KhCGWdnm1fGn+hQ0Sl70hh6miQn2xZaI+Kbodd9OfJvMFzD+2b1bq+QHN7PH0CYTtymDtEvxAwLVFY5Jn90GQKKVHknk1JlBBAEdZwKbHqsuxKoOXxQXKlY1i4NbKO+Z9qhjtutqsQ5FQ8kvRbPPp4bVt+nMmX92ZH1p6ml9zoZUzD90os0EbOD7kjAmD5NORc1ZZhmDHN13rR1HPbh5sxgBV123iMGinUT4lTgX6KVKcnDcpSX/Yvqyv8kc6PzpGrZvGBY+6yjpl7yYTw43BVRaA7Zve71Dt5psTtdhoEzZgpfAPHjnbvcbfW5AadnKqf/7QDBytnCeqvzvcVH6Uy+xmFWZHC78Mmo6k0IhMKuavgNspAE5mO42IaNl+8iLXxAWeSY4/44PJTwdB1IeRCXJCb35TRzcBTqRk9d3YsvFOAvSxRdfjYgM0tY9j8WEsMkYToXyjKn+H2kDSRQGua0lU+wwdJHw0QuxG7j5rwN4MgiOzhos4sau4sZTIWb84=----ATTACHMENT:----MzA3MDI3ODExMDA2NDI0NiA3MzQzNDk0ODA3NTc2MTcxIDk3NzYxNTQ1MTg1ODk2OTU=