Skip to content

Commit c615e07

Browse files
committed
docs updated
1 parent 0c0ae07 commit c615e07

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

RoboFile.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ public function release()
88
$this->test();
99

1010
$version = file_get_contents('VERSION');
11+
12+
$this->docs();
1113

1214
// create GitHub release
1315
$this->taskGitHubRelease($version)

docs/GlobalConfig.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Global Specify configuration. Should be set in bootstrap.
1818

1919

2020

21+
2122
#### *public* propertyIgnored($property)
2223
#### *public* classIgnored($value)
2324
#### *public* propertyIsShallowCloned($property)

docs/LocalConfig.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,15 @@ $this->specifyConfig()->shallowClone(['user', 'tag']);
9494
* `param bool` $properties
9595
* `return` $this
9696

97+
#### *public* cloneOnly($properties)
98+
Clone only specific properties
99+
100+
```php
101+
<?php
102+
$this->specifyConfig()->cloneOnly('user', 'post');
103+
?>
104+
```
105+
106+
* `param` $properties
107+
* `return` $this
108+

0 commit comments

Comments
 (0)