Skip to content

Commit e617fd0

Browse files
authored
Fix dynamic property creation notice (#135)
* Fix dynamic property creation notice Creation of dynamic property XBase\Header\Header::$backlist is deprecated in /hisamu/php-xbase/src/Header/Reader/VisualFoxproHeaderReader.php:35 * Update ci.yaml upload-artifacts@v2 > v4
1 parent b7fb1da commit e617fd0

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
run: ./cc-test-reporter format-coverage -o codeclimate.json
7878

7979
- name: Upload coverage file artifact
80-
uses: actions/upload-artifact@v2
80+
uses: actions/upload-artifact@v4
8181
with:
8282
name: ${{ matrix.php-version }}-${{ matrix.dependencies }}
8383
path: codeclimate.json

src/Header/Header.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ class Header
6666
*/
6767
public $length;
6868

69+
/**
70+
* @var string
71+
*/
72+
public $backlist;
73+
6974
public function __construct(array $properties = [])
7075
{
7176
foreach ($properties as $property => $value) {

0 commit comments

Comments
 (0)