Skip to content

Commit 6101d21

Browse files
committed
moving code to src
1 parent 987db91 commit 6101d21

File tree

7 files changed

+4
-4
lines changed

7 files changed

+4
-4
lines changed
File renamed without changes.
File renamed without changes.

app/models/Users.php renamed to src/models/Users.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class Users extends Model
66
{
7+
public $email;
78
public $id;
89
public $name;
9-
public $email;
1010
}

app/views/index.phtml renamed to src/views/index.phtml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
<head>
44
<meta charset="UTF-8">
55
<title>Phalcon Tutorial</title>
6-
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
6+
<link rel="stylesheet"
7+
href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
78
</head>
89
<body>
910
<div class="container">
1011
<?php echo $this->getContent(); ?>
1112
</div>
1213
</body>
13-
</html>
14+
</html>
File renamed without changes.

app/views/signup/index.phtml renamed to src/views/signup/index.phtml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,3 @@
1717
</p>
1818

1919
<?php echo $this->tag->close('form'); ?>
20-
File renamed without changes.

0 commit comments

Comments
 (0)