Skip to content

Commit

Permalink
Make members private
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Apr 11, 2021
1 parent 5e8c5e4 commit 497441e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/php/xp/frontend/LibraryDependency.class.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php namespace xp\frontend;

class LibraryDependency extends Dependency {
public $library, $version, $files;
private $library, $version, $files;

/**
* Creates a new dependency
Expand Down
2 changes: 1 addition & 1 deletion src/main/php/xp/frontend/LocalDependency.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use io\Path;

class LocalDependency extends Dependency {
public $folder, $files;
private $folder, $files;

/**
* Creates a new dependency
Expand Down

0 comments on commit 497441e

Please sign in to comment.