solution = [ ]; } /** * Constructs a PhoneNumberContext * * @param string $phoneNumber The phone number in E.164 format */ public function getContext( string $phoneNumber ): PhoneNumberContext { return new PhoneNumberContext( $this->version, $phoneNumber ); } /** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { return '[Twilio.Routes.V2.PhoneNumberList]'; } }