Carson Full
Carson Full
Hey is there the ability to upload a song with this API? If not I'm thinking about jumping on and helping port from the original.
The `Commenting\AnnotationsSniff` currently doesn't like: ```php /** * @expectedException \Exception * @expectedExceptionMessage Don't do it. */ public function testThing() {} ``` But I don't think this looks right: ```php /**...
`PSR2` imports `Squiz.WhiteSpace.ScopeClosingBrace`. `Zend` imports `PEAR.WhiteSpace.ScopeClosingBrace`. It's hard to tell which one is better. I'm leaning towards keeping the one in PSR over Zend though.
This gives an error: ```php $arr = []; $func = function ($item) { return $item['foo']; }; ``` This works fine: ```php $arr = []; $func = function ($item) { return...
Support key prefixes https://github.com/i18next/react-i18next/pull/1371 ```tsx const { t } = useTranslation('translation', { keyPrefix: 'very.deeply.nested' }); const text = t('key'); // extract as "very.deeply.nested.key" ```
I see you collect lock information in `LockAbstract` it would be nice if there was to publicly get that info. Even as simple as making `getLockInfo` public. Although, it doesn't...
**Describe the bug** Schema: ```gql enum Color { Red @deprecated(reason: "Blue is better") Blue } ``` Whenever my graphql code gen gives me `GraphQLSchema` object (I think from the `File/UrlLoader`)...
```tsx // setup following readme hsimp('hello there'); ``` result is ```ts { time: '1 year', level: null, checks: [] } ``` Is this expected?
Looking around, it seems this has come up before and has been fixed. I guess something else has changed again, hoping for another fix :) Karabiner 10.22.0 IntelliJ IDEA 2017.1...
### Setup: 1. I have a query like: ```gql query EngagementDetail($id: ID!) { engagement(id: $id) { id createdAt products { total items { # ProductList[] id label ``` 2. I...