Skip to content

Commit

Permalink
Merge pull request #29 from bim-g/v2
Browse files Browse the repository at this point in the history
fix: raname class folder name to src
  • Loading branch information
bim-g committed Oct 22, 2021
2 parents 8db303e + 5622484 commit 38970e1
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"autoload": {
"psr-4": {
"Wepesi\\app\\":"class/"
"Wepesi\\app\\":"src/"
}
},
"require": {}
Expand Down
6 changes: 1 addition & 5 deletions index.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
<?php

include('./class/Validate.php');
include('./class/VString.php');
include('./class/VNumber.php');
include('./class/VBoolean.php');
include('./class/VDate.php');
require_once "./vendor/autoload.php";
include('./test/index.php');
File renamed without changes.
2 changes: 1 addition & 1 deletion class/VDate.php → src/VDate.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/**
* Description of VNumber
*
* @author Lenovo
* @author Boss Ibrahim Mussa
*/
class VDate
{
Expand Down
2 changes: 1 addition & 1 deletion class/VNumber.php → src/VNumber.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
/**
* Description of VNumber
*
* @author Lenovo
* @author Boss Ibrahim Mussa
*/
class VNumber {
//put your code here
Expand Down
2 changes: 1 addition & 1 deletion class/VString.php → src/VString.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* Description of String
*
* @author Ibrahim
* @author Boss Ibrahim Mussa
*/
class VString {
private $string_value;
Expand Down
2 changes: 1 addition & 1 deletion class/Validate.php → src/Validate.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/**
* Description of validate
*
* @author Lenovo
* @author Boss Ibrahim Mussa
*/
class Validate {
private $_passed;
Expand Down

0 comments on commit 38970e1

Please sign in to comment.