Full Changelog: https://github.com/cable8mm/good-code/compare/v2.8.0...v2.8.1
- Fill all of class comments by @cable8mm in #24
- Coordinate class comments by @cable8mm in #25
- Rename
LocationtoLocationCodeclass by @cable8mm in #26 - Add
BoxCodeclass by @cable8mm in #27
Full Changelog: https://github.com/cable8mm/good-code/compare/v2.7.0...v2.8.0
Full Changelog: https://github.com/cable8mm/good-code/compare/v2.6.0...v2.7.0
Full Changelog: https://github.com/cable8mm/good-code/compare/v2.5.1...v2.6.0
Full Changelog: https://github.com/cable8mm/good-code/compare/v2.5.0...v2.5.1
- Give production codes on the README by @cable8mm in #18
- Write comments of classes all by @cable8mm in #19
- Add receipt code classes by @cable8mm in #20
Full Changelog: https://github.com/cable8mm/good-code/compare/v2.4.0...v2.5.0
Full Changelog: https://github.com/cable8mm/good-code/compare/v2.3.0...v2.4.0
Full Changelog: https://github.com/cable8mm/good-code/compare/v2.2.0...v2.3.0
Full Changelog: https://github.com/cable8mm/good-code/compare/v2.1.0...v2.2.0
Full Changelog: https://github.com/cable8mm/good-code/compare/v2.0.0...v2.1.0
- Revise package description by @cable8mm in #12
- Change package name to
cable8mm/good-codeby @cable8mm in #13
Full Changelog: https://github.com/cable8mm/good-code/compare/v1.0.3...v2.0.0
Full Changelog: https://github.com/cable8mm/good-code-parser/compare/v1.0.2...v1.0.3
- Add classes and methods comments for API Documentation by @cable8mm in #9
- Organizing various document wordings by @cable8mm in #10
Full Changelog: https://github.com/cable8mm/good-code-parser/compare/v1.0.1...v1.0.2
Full Changelog: https://github.com/cable8mm/good-code-parser/compare/v1.0.0...v1.0.1
- Fix namespace of test classes by @cable8mm in #2
- Add github actions by @cable8mm in #3
- Fix some errors of ci by @cable8mm in #4
- Add changelog action by @cable8mm in #5
- Change package name to esc-company/good-code-parser by @cable8mm in #6
Full Changelog: https://github.com/cable8mm/good-code-parser/compare/v0.8...v1.0.0
- Change namespace by @cable8mm in #1
- @cable8mm made their first contribution in #1
Full Changelog: https://github.com/cable8mm/good-code-parser/compare/0.7.1...v0.8
Feature : Setcode default value. The patch apply setcode default value.
public function test_세트코드_축약버전_파싱이_되는지()
{
// Arrange
$input = 'set107253x1ZZ102257ZZ104128x2';
$expect = [
'107253' => 1,
'102257' => 1, // 이 값은 코드에 없기 때문에 1(default value)로 처리됨.
'104128' => 2,
];
// Act
$parsed = (new GoodCodeParser($input))->with(SetGood::class)->get();
// Assert
$this->assertEquals($parsed, $expect);
}
Launch code parser for Ecommerce