Skip to content

Commit 38970e1

Browse files
authored
Merge pull request #29 from bim-g/v2
fix: raname class folder name to src
2 parents 8db303e + 5622484 commit 38970e1

File tree

7 files changed

+6
-10
lines changed

7 files changed

+6
-10
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
],
1212
"autoload": {
1313
"psr-4": {
14-
"Wepesi\\app\\":"class/"
14+
"Wepesi\\app\\":"src/"
1515
}
1616
},
1717
"require": {}

index.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
<?php
22

3-
include('./class/Validate.php');
4-
include('./class/VString.php');
5-
include('./class/VNumber.php');
6-
include('./class/VBoolean.php');
7-
include('./class/VDate.php');
3+
require_once "./vendor/autoload.php";
84
include('./test/index.php');
File renamed without changes.

class/VDate.php renamed to src/VDate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/**
77
* Description of VNumber
88
*
9-
* @author Lenovo
9+
* @author Boss Ibrahim Mussa
1010
*/
1111
class VDate
1212
{

class/VNumber.php renamed to src/VNumber.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* Description of VNumber
1313
*
14-
* @author Lenovo
14+
* @author Boss Ibrahim Mussa
1515
*/
1616
class VNumber {
1717
//put your code here

class/VString.php renamed to src/VString.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* Description of String
1111
*
12-
* @author Ibrahim
12+
* @author Boss Ibrahim Mussa
1313
*/
1414
class VString {
1515
private $string_value;

class/Validate.php renamed to src/Validate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/**
55
* Description of validate
66
*
7-
* @author Lenovo
7+
* @author Boss Ibrahim Mussa
88
*/
99
class Validate {
1010
private $_passed;

0 commit comments

Comments
 (0)