Skip to content

Commit 7c1a251

Browse files
Update CHANGELOG.md
1 parent 99a40c5 commit 7c1a251

File tree

3 files changed

+8
-13
lines changed

3 files changed

+8
-13
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# CHANGELOG
22

3+
## v0.3.0 - [2023/07/17]
4+
5+
- Removed Application class
6+
- Added Application classes based on abstraction
7+
- Updated Route action and match classes
8+
- Added enums (HttpSchemeEnum, HttpMethodsEnum)
9+
- Updated Config and Unit classes
10+
311
## v0.2.0 - [2023/07/16]
412

513
- Added new method `getListenerByPort`

src/Config.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -104,17 +104,6 @@ public function getListeners(): array
104104
return $this->_listeners ?? [];
105105
}
106106

107-
/**
108-
* Update listener
109-
*
110-
* @param $data
111-
* @return void
112-
*/
113-
public function updateListener($data)
114-
{
115-
// TODO: Implement updateListener() method.
116-
}
117-
118107
/**
119108
* Get applications from config
120109
*

src/Unit.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,5 @@ public function setAccessLog($path, $format = null)
120120
$request->setData(json_encode($data));
121121

122122
return $request->send('/config/access_log');
123-
// TODO: Implement setApplicationLogPath() method.
124-
// Implement functions from this source https://unit.nginx.org/configuration/#access-log
125123
}
126124
}

0 commit comments

Comments
 (0)