Skip to content

Commit b3c5fb6

Browse files
committed
break stuff
1 parent 56b7477 commit b3c5fb6

File tree

9 files changed

+542
-15
lines changed

9 files changed

+542
-15
lines changed

.gitattributes

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# Force line-endings to LF (checking out with CRLF on Windows would cause tests to fail!)
2-
*.php text eol=lf
3-
*.txt text eol=lf
1+
# Force line-endings to CRLF (checking out with LF on Linux would cause tests to fail!)
2+
*.php text eol=crlf
3+
*.txt text eol=crlf

src/SMTPConnector.php

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
namespace Kodus\Mail;
4+
5+
class SMTPConnector
6+
{
7+
public function __construct()
8+
{
9+
// TODO
10+
}
11+
12+
/**
13+
* @return resource SMTP connection handle
14+
*/
15+
public function connect()
16+
{
17+
// TODO
18+
}
19+
}

0 commit comments

Comments
 (0)