We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b97cad0 + f6c3fe3 commit a3f18b5Copy full SHA for a3f18b5
tests/Type/ObjectIdStub.php
@@ -3,21 +3,21 @@
3
4
class ObjectIdStub
5
{
6
- /**
7
- * @var int
8
- */
9
- private $id;
+ /**
+ * @var int
+ */
+ private $id;
10
11
12
- * @param int $id
13
14
- public function __construct($id)
15
- {
16
- $this->id = $id;
17
- }
+ * @param int $id
+ public function __construct($id)
+ {
+ $this->id = $id;
+ }
18
19
- public function __toString()
20
21
- return (string) $this->id;
22
+ public function __toString()
+ return (string) $this->id;
23
}
0 commit comments