Skip to content
This repository has been archived by the owner on Apr 9, 2020. It is now read-only.

Commit

Permalink
Changed company name references
Browse files Browse the repository at this point in the history
  • Loading branch information
mfrankruijter committed Mar 5, 2020
1 parent db0dca9 commit 74c01af
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 39 deletions.
36 changes: 6 additions & 30 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,44 +4,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 1.0.1 - 2019-04-22
### Added
- Nothing

## 1.0.2 - 2020-03-05
### Changed
- Nothing

### Deprecated
- Nothing

### Removed
- Nothing
- Changed company name references.

## 1.0.1 - 2019-04-22
### Fixed
- Missing doc-block for function getOptions in class Enum.

### Security
- Nothing

## 1.0.0 - 2019-04-05
### Added
- Initial implementation of ulrack/enum
- `Ulrack\Enum\Enum`
- Unit Tests

### Changed
- Nothing

### Deprecated
- Nothing

### Removed
- Nothing

### Fixed
- Nothing

### Security
- Nothing

[Unreleased]: https://github.com/ulrack/enum/compare/1.0.1...HEAD
[Unreleased]: https://github.com/ulrack/enum/compare/1.0.2...HEAD
[1.0.2]: https://github.com/ulrack/enum/compare/1.0.1...1.0.2
[1.0.1]: https://github.com/ulrack/enum/compare/1.0.0...1.0.1
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at info@jyxon.com. All
reported by contacting the project team at info@grizzit.com. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019 Jyxon
Copyright (c) 2019 GrizzIT

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ An implementation of the enumerable would look like the following:
```php
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand All @@ -50,7 +50,7 @@ An implementation of this in action would look like the following:
```php
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down Expand Up @@ -79,7 +79,7 @@ For example to retrieve all options, the static method `getOptions` can be calle
This would retrieve an associative array of the options.

It is also possible to retrieve the enumerable name by supplying the value to a different function.
This can be done by calling `MyEnum::getOrdinal('foo')` which would yield `FOO`.
This can be done by calling `MyEnum::getOrdinal('foo')` which would yield `FOO`.

## Change log

Expand All @@ -91,7 +91,7 @@ Please see [CONTRIBUTING](CONTRIBUTING.md) and [CODE_OF_CONDUCT](CODE_OF_CONDUCT

## MIT License

Copyright (c) 2019 Jyxon
Copyright (c) 2019 GrizzIT

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion src/Enum.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion tests/EnumMock.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down
2 changes: 1 addition & 1 deletion tests/EnumTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (C) Jyxon, Inc. All rights reserved.
* Copyright (C) GrizzIT, Inc. All rights reserved.
* See LICENSE for license details.
*/

Expand Down

0 comments on commit 74c01af

Please sign in to comment.