<?phpnamespaceWikimedia\NonSerializable;useLogicException;/** * A trait that prevents serialization via php's builtin serialize() function. */traitNonSerializableTrait{/** * @throws LogicException always * @return never */publicfunction__sleep(){thrownewLogicException('Instances of '.get_class($this).' are not serializable!');}}