Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Emc/WebService.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,21 +53,21 @@ class WebService
* @access public
* @var string
*/
public $document_server = 'http://test.envoimoinscher.com/documents';
public $document_server = 'https://test.envoimoinscher.com/documents';

/**
* API test document server host.
* @access public
* @var string
*/
private $document_server_test = 'http://test.envoimoinscher.com/documents';
private $document_server_test = 'https://test.envoimoinscher.com/documents';

/**
* API production document server host.
* @access public
* @var string
*/
private $document_server_prod = 'http://documents.envoimoinscher.com/documents';
private $document_server_prod = 'https://documents.envoimoinscher.com/documents';

/**
* Library version
Expand Down
4 changes: 2 additions & 2 deletions config/environment.example.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

// Testing envirenment
define('SERVER_TEST', 'http://test.envoimoinscher.com/');
define('SERVER_TEST_DOC', 'http://test.envoimoinscher.com//documents');
define('SERVER_TEST', 'https://test.envoimoinscher.com/');
define('SERVER_TEST_DOC', 'https://test.envoimoinscher.com//documents');

// Test account
define('EMC_USER_TEST', '');
Expand Down