Skip to content

Commit

Permalink
changed class property to private from public
Browse files Browse the repository at this point in the history
  • Loading branch information
okoibraun committed Feb 3, 2021
1 parent 9c6992f commit 9512cdd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions classes/CRUD.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ class CRUD
* Properties
*
*/
public $host;
public $username;
public $password;
public $database;
private $host;
private $username;
private $password;
private $database;

/**
* Initialize the base class
Expand Down

0 comments on commit 9512cdd

Please sign in to comment.