Using the NonfungiblePositionManager directly a user could potentially mint a position directly to ParticlePositionManager by having ParticlePositionManager as the receiver when calling NonfungiblePositionManager::mint.
Since NonfungiblePositionManager doesnt use safeMint this would just transfer the token and liquidity to ParticlePositionManager without calling ParticlePositionManager::onERC721Received, thus the liquidity would be lost.
Consider adding a rescue function callable by owner that can transfer any accidentally minted tokens out of the contract. This could check that ParticlePositionManager is the owner of the token but has lps.owner == address(0) to prevent misuse.
