Jake Vanderwerf
6 hours ago 3baf3d2545ba6ece6b74a64c0def59bd0774cf54
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;
   }
}