Skip to content

Commit

Permalink
Added ConfigurationInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
JeroenBoersma committed Mar 3, 2023
1 parent 58a35b4 commit 4fe2dd5
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/Api/ConfigurationInterface.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

namespace Elgentos\Rumvision\Api;

interface ConfigurationInterface
{
public const CONFIG_RUMVISION_ENALBED = 'elgentos_rumvision/general/enabled',
CONFIG_RUMVISION_TRACKING_ID = 'elgentos_rumvision/general/tracking_id',
CONFIG_RUMVISION_HOST_NAME = 'elgentos_rumvision/general/hostname';

public function isEnabled(int $storeId = null): bool;

public function getTrackingId(int $storeId = null) :string;

public function getHostName(int $storeId = null) :string;

}

0 comments on commit 4fe2dd5

Please sign in to comment.