Skip to content

Commit e13b45f

Browse files
committed
Cleaned up some remarks used during implementation of the feature
Signed-off-by: Frank Mayer <frank@frankmayer.net>
1 parent 79d88ad commit e13b45f

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

lib/triagens/ArangoDb/Edge.php

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,6 @@
1616
* @package ArangoDbPhpClient
1717
*/
1818
class Edge extends Document {
19-
// /**
20-
// * The document id (might be NULL for new documents)
21-
// * @var string - document id
22-
// */
23-
// private $_id = NULL;
24-
//
25-
// /**
26-
// * The document revision (might be NULL for new documents)
27-
// * @var mixed
28-
// */
29-
// private $_rev = NULL;
30-
//
3119
/**
3220
* The edge's from (might be NULL for new documents)
3321
* @var mixed
@@ -40,16 +28,6 @@ class Edge extends Document {
4028
*/
4129
protected $_to = NULL;
4230

43-
// /**
44-
// * Document _id index
45-
// */
46-
// const ENTRY_ID = '_id';
47-
//
48-
// /**
49-
// * Revision _rev index
50-
// */
51-
// const ENTRY_REV = '_rev';
52-
5331
/**
5432
* Document _from index
5533
*/
@@ -71,8 +49,6 @@ class Edge extends Document {
7149
public function __clone() {
7250
$this->_id = NULL;
7351
$this->_rev = NULL;
74-
// $this->_to = NULL;
75-
// $this->_from = NULL;
7652

7753
// do not change the _changed flag here
7854
}

0 commit comments

Comments
 (0)