for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
namespace JSKOS;
use InvalidArgumentException;
/**
* Language map of strings for prefLabel.
*/
class LanguageMapOfStrings extends LanguageMap
{
use StringContainer;
public function jsonLDSerialize(string $context = self::DEFAULT_CONTEXT, bool $types = null)
ksort($this->members);
return (object)$this->members;
}