Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 1922ef7

Browse files
committed
Bug fixes, client ip context and PHP 5.3 support
1 parent 05cff12 commit 1922ef7

24 files changed

+86
-47
lines changed

ApplicationInsights/Channel/Contracts/Application.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Data contract class for type Application.
66
*/
7-
class Application implements \JsonSerializable
7+
class Application
88
{
99
/**
1010
* Data array that will store all the values.
@@ -16,7 +16,7 @@ class Application implements \JsonSerializable
1616
*/
1717
function __construct()
1818
{
19-
$this->_data = [];
19+
$this->_data = array();
2020
}
2121

2222
/**

ApplicationInsights/Channel/Contracts/Data.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Data contract class for type Data.
66
*/
7-
class Data implements \JsonSerializable
7+
class Data
88
{
99
/**
1010
* Data array that will store all the values.

ApplicationInsights/Channel/Contracts/Data_Point.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Data contract class for type Data_Point.
66
*/
7-
class Data_Point implements \JsonSerializable
7+
class Data_Point
88
{
99
/**
1010
* Data array that will store all the values.

ApplicationInsights/Channel/Contracts/Device.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Data contract class for type Device.
66
*/
7-
class Device implements \JsonSerializable
7+
class Device
88
{
99
/**
1010
* Data array that will store all the values.
@@ -16,7 +16,7 @@ class Device implements \JsonSerializable
1616
*/
1717
function __construct()
1818
{
19-
$this->_data = [];
19+
$this->_data = array();
2020
}
2121

2222
/**

ApplicationInsights/Channel/Contracts/Envelope.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Data contract class for type Envelope.
66
*/
7-
class Envelope implements \JsonSerializable
7+
class Envelope
88
{
99
/**
1010
* Data array that will store all the values.

ApplicationInsights/Channel/Contracts/Event_Data.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Data contract class for type Event_Data.
66
*/
7-
class Event_Data implements \JsonSerializable
7+
class Event_Data
88
{
99
/**
1010
* Data array that will store all the values.

ApplicationInsights/Channel/Contracts/Exception_Data.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Data contract class for type Exception_Data.
66
*/
7-
class Exception_Data implements \JsonSerializable
7+
class Exception_Data
88
{
99
/**
1010
* Data array that will store all the values.

ApplicationInsights/Channel/Contracts/Exception_Details.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Data contract class for type Exception_Details.
66
*/
7-
class Exception_Details implements \JsonSerializable
7+
class Exception_Details
88
{
99
/**
1010
* Data array that will store all the values.

ApplicationInsights/Channel/Contracts/Internal.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Data contract class for type Internal.
66
*/
7-
class Internal implements \JsonSerializable
7+
class Internal
88
{
99
/**
1010
* Data array that will store all the values.
@@ -16,7 +16,7 @@ class Internal implements \JsonSerializable
1616
*/
1717
function __construct()
1818
{
19-
$this->_data = [];
19+
$this->_data = array();
2020
}
2121

2222
/**

ApplicationInsights/Channel/Contracts/Location.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Data contract class for type Location.
66
*/
7-
class Location implements \JsonSerializable
7+
class Location
88
{
99
/**
1010
* Data array that will store all the values.
@@ -16,7 +16,7 @@ class Location implements \JsonSerializable
1616
*/
1717
function __construct()
1818
{
19-
$this->_data = [];
19+
$this->_data = array();
2020
}
2121

2222
/**

0 commit comments

Comments
 (0)