diff --git a/LICENSE b/LICENSE index aa1a038..dbf290b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,7 @@ The MIT License (MIT) Copyright (c) 2013 Zizaco Zizuini +Copyright (c) 2014 Scott Robertson Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/Exception/NoDefinedFactory.php b/src/Exception/NoDefinedFactory.php index c70b2fe..5e4b22b 100644 --- a/src/Exception/NoDefinedFactory.php +++ b/src/Exception/NoDefinedFactory.php @@ -7,8 +7,9 @@ * * @package League\FactoryMuffin\Exception * @author Zizaco + * @author Scott Robertson * @license MIT - * @link https://github.com/thephpleague/factory-muffin/ + * @link https://github.com/thephpleague/factory-muffin */ class NoDefinedFactory extends \Exception { diff --git a/src/Exception/Save.php b/src/Exception/Save.php index de4d8b2..7a81637 100644 --- a/src/Exception/Save.php +++ b/src/Exception/Save.php @@ -7,8 +7,9 @@ * * @package League\FactoryMuffin\Exception * @author Zizaco + * @author Scott Robertson * @license MIT - * @link https://github.com/thephpleague/factory-muffin/ + * @link https://github.com/thephpleague/factory-muffin */ class Save extends \Exception { diff --git a/src/Facade/FactoryMuffin.php b/src/Facade/FactoryMuffin.php index 4671e47..92f91f0 100644 --- a/src/Facade/FactoryMuffin.php +++ b/src/Facade/FactoryMuffin.php @@ -10,8 +10,9 @@ * * @package League\FactoryMuffin\Facades * @author Zizaco + * @author Scott Robertson * @license MIT - * @link https://github.com/thephpleague/factory-muffin/ + * @link https://github.com/thephpleague/factory-muffin */ class FactoryMuffin { diff --git a/src/FactoryMuffin.php b/src/FactoryMuffin.php index b4fba2d..3172afc 100644 --- a/src/FactoryMuffin.php +++ b/src/FactoryMuffin.php @@ -10,8 +10,9 @@ * * @package League\FactoryMuffin * @author Zizaco + * @author Scott Robertson * @license MIT - * @link https://github.com/thephpleague/factory-muffin/ + * @link https://github.com/thephpleague/factory-muffin */ class FactoryMuffin { diff --git a/src/Kind.php b/src/Kind.php index 4f7ff61..f7e73a0 100644 --- a/src/Kind.php +++ b/src/Kind.php @@ -9,8 +9,9 @@ * * @package League\FactoryMuffin * @author Zizaco + * @author Scott Robertson * @license MIT - * @link https://github.com/thephpleague/factory-muffin/ + * @link https://github.com/thephpleague/factory-muffin */ abstract class Kind { diff --git a/src/Kind/Call.php b/src/Kind/Call.php index ea899d5..3459f46 100644 --- a/src/Kind/Call.php +++ b/src/Kind/Call.php @@ -11,8 +11,9 @@ * * @package League\FactoryMuffin\Kind * @author Zizaco + * @author Scott Robertson * @license MIT - * @link https://github.com/thephpleague/factory-muffin/ + * @link https://github.com/thephpleague/factory-muffin */ class Call extends Kind { diff --git a/src/Kind/Closure.php b/src/Kind/Closure.php index 348c63f..2c83d16 100644 --- a/src/Kind/Closure.php +++ b/src/Kind/Closure.php @@ -9,8 +9,9 @@ * * @package League\FactoryMuffin\Kind * @author Zizaco + * @author Scott Robertson * @license MIT - * @link https://github.com/thephpleague/factory-muffin/ + * @link https://github.com/thephpleague/factory-muffin */ class Closure extends Kind { diff --git a/src/Kind/Date.php b/src/Kind/Date.php index a14095b..f025452 100644 --- a/src/Kind/Date.php +++ b/src/Kind/Date.php @@ -9,8 +9,9 @@ * * @package League\FactoryMuffin\Kind * @author Zizaco + * @author Scott Robertson * @license MIT - * @link https://github.com/thephpleague/factory-muffin/ + * @link https://github.com/thephpleague/factory-muffin */ class Date extends Kind { diff --git a/src/Kind/Factory.php b/src/Kind/Factory.php index e5f5b84..ebb3aa3 100644 --- a/src/Kind/Factory.php +++ b/src/Kind/Factory.php @@ -9,8 +9,9 @@ * * @package League\FactoryMuffin\Kind * @author Zizaco + * @author Scott Robertson * @license MIT - * @link https://github.com/thephpleague/factory-muffin/ + * @link https://github.com/thephpleague/factory-muffin */ class Factory extends Kind { diff --git a/src/Kind/Generic.php b/src/Kind/Generic.php index 98d0e89..3ea0a5d 100644 --- a/src/Kind/Generic.php +++ b/src/Kind/Generic.php @@ -10,8 +10,9 @@ * * @package League\FactoryMuffin\Kind * @author Zizaco + * @author Scott Robertson * @license MIT - * @link https://github.com/thephpleague/factory-muffin/ + * @link https://github.com/thephpleague/factory-muffin */ class Generic extends Kind { diff --git a/src/Kind/Integer.php b/src/Kind/Integer.php index 9617f19..5b467b4 100644 --- a/src/Kind/Integer.php +++ b/src/Kind/Integer.php @@ -9,8 +9,9 @@ * * @package League\FactoryMuffin\Kind * @author Zizaco + * @author Scott Robertson * @license MIT - * @link https://github.com/thephpleague/factory-muffin/ + * @link https://github.com/thephpleague/factory-muffin */ class Integer extends Kind { diff --git a/src/Kind/Name.php b/src/Kind/Name.php index 1712713..1e80938 100644 --- a/src/Kind/Name.php +++ b/src/Kind/Name.php @@ -9,8 +9,9 @@ * * @package League\FactoryMuffin\Kind * @author Zizaco + * @author Scott Robertson * @license MIT - * @link https://github.com/thephpleague/factory-muffin/ + * @link https://github.com/thephpleague/factory-muffin */ class Name extends Kind { diff --git a/src/Kind/String.php b/src/Kind/String.php index 89ae382..631d6f9 100644 --- a/src/Kind/String.php +++ b/src/Kind/String.php @@ -9,8 +9,9 @@ * * @package League\FactoryMuffin\Kind * @author Zizaco + * @author Scott Robertson * @license MIT - * @link https://github.com/thephpleague/factory-muffin/ + * @link https://github.com/thephpleague/factory-muffin */ class String extends Kind { diff --git a/src/Kind/Text.php b/src/Kind/Text.php index 82e8e63..d292f1c 100644 --- a/src/Kind/Text.php +++ b/src/Kind/Text.php @@ -9,8 +9,9 @@ * * @package League\FactoryMuffin\Kind * @author Zizaco + * @author Scott Robertson * @license MIT - * @link https://github.com/thephpleague/factory-muffin/ + * @link https://github.com/thephpleague/factory-muffin */ class Text extends Kind {