Jake Vanderwerf
2026-06-17 f16cb88a3218ac7bb32e43f0e0a2542d35c7a01b
inc/integrations/Integrations.php
@@ -66,7 +66,7 @@
    * Used for UI rendering in admin interfaces
    */
   public string $title;  // Human-readable service name (e.g., 'Google My Business')
   public string $icon;   // Phosphoricons icon slug
   public string $icon = '';   // Phosphoricons icon slug
   /**
    * Credentials & State
@@ -2714,6 +2714,15 @@
      return $this->title;
   }
   public static function title():string
   {
      return (new static())->getTitle();
   }
   public static function icon():string
   {
      return (new static())->getIcon();
   }
   /*********************************************************************
      RENDERING
    *********************************************************************/
@@ -3535,4 +3544,9 @@
   {
      return [];
   }
   public function getIcon():string
   {
      return $this->icon;
   }
}