Skip to content

Commit 30366b1

Browse files
committed
Cleanup
1 parent e841b8c commit 30366b1

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

src/lib/AttributeResolver.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,6 @@ protected function resolveProperty(
225225
->setReadOnly($property->isReadonly())
226226
->setDefault($property->guessDefault())
227227
->setXDbType($property->getAttr(CustomSpecAttr::DB_TYPE))
228-
// ->setXFaker($property->getAttr(CustomSpecAttr::FAKER))
229228
->setXDbDefaultExpression($property->getAttr(CustomSpecAttr::DB_DEFAULT_EXPRESSION))
230229
->setNullable($nullableValue)
231230
->setIsPrimary($property->isPrimaryKey())

src/lib/items/Attribute.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,6 @@ class Attribute extends BaseObject
7171
*/
7272
public $xDbType;
7373

74-
// public $xFaker;
75-
7674
/**
7775
* nullable
7876
* bool | null
@@ -156,12 +154,6 @@ public function setXDbType($xDbType):Attribute
156154
return $this;
157155
}
158156

159-
// public function setXFaker($xFaker):Attribute
160-
// {
161-
// $this->xFaker = $xFaker;
162-
// return $this;
163-
// }
164-
165157
public function setXDbDefaultExpression($xDbDefaultExpression): Attribute
166158
{
167159
// first priority is given to `default` and then to `x-db-default-expression`

0 commit comments

Comments
 (0)