@frontastic/common 2.37.0 → 2.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
package/composer.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "frontastic/common",
|
|
3
3
|
"license": "None",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.38.0",
|
|
5
5
|
"repositories": [
|
|
6
6
|
{
|
|
7
7
|
"type": "path",
|
|
@@ -51,11 +51,11 @@
|
|
|
51
51
|
"doctrine/common": "^2.9",
|
|
52
52
|
"frontastic/apidocs": "@dev",
|
|
53
53
|
"pdepend/pdepend": "@stable",
|
|
54
|
-
"phake/phake": "^
|
|
54
|
+
"phake/phake": "^4.0",
|
|
55
55
|
"phploc/phploc": "@stable",
|
|
56
56
|
"phpmd/phpmd": "@stable",
|
|
57
57
|
"phpstan/phpstan": "0.12.25",
|
|
58
|
-
"phpunit/phpunit": "^
|
|
58
|
+
"phpunit/phpunit": "^8",
|
|
59
59
|
"sebastian/phpcpd": "@stable",
|
|
60
60
|
"squizlabs/php_codesniffer": "@stable",
|
|
61
61
|
"symfony/swiftmailer-bundle": "^3.4"
|
|
@@ -36,6 +36,8 @@ Property|Type|Default|Required|Description
|
|
|
36
36
|
* [cleanForSession()](#cleanforsession)
|
|
37
37
|
* [serialize()](#serialize)
|
|
38
38
|
* [unserialize()](#unserialize)
|
|
39
|
+
* [__serialize()](#__serialize)
|
|
40
|
+
* [__unserialize()](#__unserialize)
|
|
39
41
|
|
|
40
42
|
### setPassword()
|
|
41
43
|
|
|
@@ -149,4 +151,26 @@ Argument|Type|Default|Description
|
|
|
149
151
|
|
|
150
152
|
Return Value: `mixed`
|
|
151
153
|
|
|
154
|
+
### __serialize()
|
|
155
|
+
|
|
156
|
+
```php
|
|
157
|
+
public function __serialize(): array
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
Return Value: `array`
|
|
161
|
+
|
|
162
|
+
### __unserialize()
|
|
163
|
+
|
|
164
|
+
```php
|
|
165
|
+
public function __unserialize(
|
|
166
|
+
array $data
|
|
167
|
+
): void
|
|
168
|
+
```
|
|
169
|
+
|
|
170
|
+
Argument|Type|Default|Description
|
|
171
|
+
--------|----|-------|-----------
|
|
172
|
+
`$data`|`array`||
|
|
173
|
+
|
|
174
|
+
Return Value: `void`
|
|
175
|
+
|
|
152
176
|
Generated with [Frontastic API Docs](https://github.com/FrontasticGmbH/apidocs).
|
|
@@ -29,6 +29,8 @@ Return Value: `mixed`
|
|
|
29
29
|
public function versionAction(): \Symfony\Component\HttpFoundation\JsonResponse
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
+
*This endpoint exists as a health check for deployments. Do NOT remove.*
|
|
33
|
+
|
|
32
34
|
Return Value: `\Symfony\Component\HttpFoundation\JsonResponse`
|
|
33
35
|
|
|
34
36
|
Generated with [Frontastic API Docs](https://github.com/FrontasticGmbH/apidocs).
|