Skip to content

Development #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "stackkit/laravel-database-emails",
"name": "buildcode/laravel-database-emails",
"description": "Store and send e-mails using the database",
"license": "MIT",
"authors": [
Expand All @@ -10,7 +10,7 @@
],
"autoload": {
"psr-4": {
"Stackkit\\LaravelDatabaseEmails\\": "src/"
"Buildcode\\LaravelDatabaseEmails\\": "src/"
}
},
"autoload-dev": {
Expand All @@ -21,7 +21,7 @@
"extra": {
"laravel": {
"providers": [
"Stackkit\\LaravelDatabaseEmails\\LaravelDatabaseEmailsServiceProvider"
"Buildcode\\LaravelDatabaseEmails\\LaravelDatabaseEmailsServiceProvider"
]
}
},
Expand Down
2 changes: 1 addition & 1 deletion src/Config.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Stackkit\LaravelDatabaseEmails;
namespace Buildcode\LaravelDatabaseEmails;

class Config
{
Expand Down
4 changes: 2 additions & 2 deletions src/Email.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Stackkit\LaravelDatabaseEmails;
namespace Buildcode\LaravelDatabaseEmails;

use Exception;
use Carbon\Carbon;
Expand Down Expand Up @@ -204,7 +204,7 @@ public function getSubject()
*/
public function getSubjectAttribute()
{
return $this->view;
return $this->subject;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/EmailComposer.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Stackkit\LaravelDatabaseEmails;
namespace Buildcode\LaravelDatabaseEmails;

use Illuminate\Mail\Mailable;

Expand Down
2 changes: 1 addition & 1 deletion src/Encrypter.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Stackkit\LaravelDatabaseEmails;
namespace Buildcode\LaravelDatabaseEmails;

class Encrypter
{
Expand Down
2 changes: 1 addition & 1 deletion src/HasEncryptedAttributes.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Stackkit\LaravelDatabaseEmails;
namespace Buildcode\LaravelDatabaseEmails;

use Illuminate\Contracts\Encryption\DecryptException;

Expand Down
2 changes: 1 addition & 1 deletion src/LaravelDatabaseEmailsServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Stackkit\LaravelDatabaseEmails;
namespace Buildcode\LaravelDatabaseEmails;

use Illuminate\Support\ServiceProvider;

Expand Down
2 changes: 1 addition & 1 deletion src/MailableReader.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Stackkit\LaravelDatabaseEmails;
namespace Buildcode\LaravelDatabaseEmails;

use Exception;
use function call_user_func_array;
Expand Down
2 changes: 1 addition & 1 deletion src/Preparer.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Stackkit\LaravelDatabaseEmails;
namespace Buildcode\LaravelDatabaseEmails;

use Carbon\Carbon;

Expand Down
2 changes: 1 addition & 1 deletion src/ResendEmailsCommand.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Stackkit\LaravelDatabaseEmails;
namespace Buildcode\LaravelDatabaseEmails;

class ResendEmailsCommand extends RetryFailedEmailsCommand
{
Expand Down
2 changes: 1 addition & 1 deletion src/RetryFailedEmailsCommand.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Stackkit\LaravelDatabaseEmails;
namespace Buildcode\LaravelDatabaseEmails;

use Illuminate\Console\Command;

Expand Down
2 changes: 1 addition & 1 deletion src/SendEmailsCommand.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Stackkit\LaravelDatabaseEmails;
namespace Buildcode\LaravelDatabaseEmails;

use Exception;
use Illuminate\Console\Command;
Expand Down
2 changes: 1 addition & 1 deletion src/Sender.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Stackkit\LaravelDatabaseEmails;
namespace Buildcode\LaravelDatabaseEmails;

use Illuminate\Mail\Mailer;
use Illuminate\Mail\Message;
Expand Down
2 changes: 1 addition & 1 deletion src/Store.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Stackkit\LaravelDatabaseEmails;
namespace Buildcode\LaravelDatabaseEmails;

use Carbon\Carbon;
use Illuminate\Database\Eloquent\Collection;
Expand Down
2 changes: 1 addition & 1 deletion src/Validator.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Stackkit\LaravelDatabaseEmails;
namespace Buildcode\LaravelDatabaseEmails;

use Exception;
use Carbon\Carbon;
Expand Down
2 changes: 1 addition & 1 deletion tests/MailableReaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Tests;

use Illuminate\Mail\Mailable;
use Stackkit\LaravelDatabaseEmails\Email;
use Buildcode\LaravelDatabaseEmails\Email;

class MailableReaderTest extends TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion tests/SendEmailsCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Carbon\Carbon;
use Illuminate\Support\Facades\DB;
use Stackkit\LaravelDatabaseEmails\Store;
use Buildcode\LaravelDatabaseEmails\Store;

class SendEmailsCommandTest extends TestCase
{
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Tests;

use Eloquent;
use Stackkit\LaravelDatabaseEmails\Email;
use Buildcode\LaravelDatabaseEmails\Email;

class TestCase extends \Orchestra\Testbench\TestCase
{
Expand Down Expand Up @@ -66,7 +66,7 @@ protected function getPackageProviders($app)
{
return [
\Orchestra\Database\ConsoleServiceProvider::class,
\Stackkit\LaravelDatabaseEmails\LaravelDatabaseEmailsServiceProvider::class,
\Buildcode\LaravelDatabaseEmails\LaravelDatabaseEmailsServiceProvider::class,
];
}

Expand Down
2 changes: 1 addition & 1 deletion tests/ValidatorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Carbon;
use InvalidArgumentException;
use Stackkit\LaravelDatabaseEmails\Email;
use Buildcode\LaravelDatabaseEmails\Email;

class ValidatorTest extends TestCase
{
Expand Down