solution = [ ]; } /** * Constructs a PortingPortabilityContext * * @param string $phoneNumber The phone number which portability is to be checked. Phone numbers are in E.164 format (e.g. +16175551212). */ public function getContext( string $phoneNumber ): PortingPortabilityContext { return new PortingPortabilityContext( $this->version, $phoneNumber ); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { return '[Twilio.Numbers.V1.PortingPortabilityList]'; } }